diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/CHANGELOG.md b/sdk/textanalytics/Azure.AI.TextAnalytics/CHANGELOG.md index 3c5dd6f112b7..05bf8f4cf648 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/CHANGELOG.md +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/CHANGELOG.md @@ -4,6 +4,10 @@ ### New features - Added support for service version `3.0`. This can be specified in the `TextAnalyticsClientOptions` object under the `ServiceVersion` enum. By default the SDK targets latest supported service version. - Added value `None` to enum `PiiEntityDomainType` to allow user to specify no domain. +- 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 new overload methods to all `xxActions` types that take a `xxOptions` object to facilitate a transition from a singular method to an actions method. +- The parameter `CategoriesFilter` in `RecognizePiiEntitiesActions` has been enabled for `StartAnalyzeActions` methods. ### Breaking changes - Renamed `StartAnalyzeBatchActions` to `StartAnalyzeActions`. diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/README.md b/sdk/textanalytics/Azure.AI.TextAnalytics/README.md index 87bbfc7626ef..165281cde0a0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/README.md +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/README.md @@ -612,6 +612,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++}"); @@ -634,6 +635,7 @@ This functionality allows running multiple actions in one or more documents. Act docNumber = 1; foreach (RecognizePiiEntitiesActionResult piiActionResults in piiResults) { + Console.WriteLine($" Action name: {piiActionResults.ActionName}"); foreach (RecognizePiiEntitiesResult documentResults in piiActionResults.DocumentsResults) { Console.WriteLine($" Document #{docNumber++}"); @@ -656,6 +658,7 @@ This functionality allows running multiple actions in one or more documents. Act docNumber = 1; foreach (ExtractKeyPhrasesActionResult keyPhrasesActionResult in keyPhrasesResults) { + Console.WriteLine($" Action name: {keyPhrasesActionResult.ActionName}"); foreach (ExtractKeyPhrasesResult documentResults in keyPhrasesActionResult.DocumentsResults) { Console.WriteLine($" Document #{docNumber++}"); @@ -673,6 +676,7 @@ This functionality allows running multiple actions in one or more documents. Act docNumber = 1; foreach (RecognizeLinkedEntitiesActionResult linkedEntitiesActionResults in entityLinkingResults) { + Console.WriteLine($" Action name: {linkedEntitiesActionResults.ActionName}"); foreach (RecognizeLinkedEntitiesResult documentResults in linkedEntitiesActionResults.DocumentsResults) { Console.WriteLine($" Document #{docNumber++}"); @@ -704,6 +708,7 @@ This functionality allows running multiple actions in one or more documents. Act docNumber = 1; foreach (AnalyzeSentimentActionResult analyzeSentimentActionsResult in analyzeSentimentResults) { + Console.WriteLine($" Action name: {analyzeSentimentActionsResult.ActionName}"); foreach (AnalyzeSentimentResult documentResults in analyzeSentimentActionsResult.DocumentsResults) { Console.WriteLine($" Document #{docNumber++}"); @@ -720,7 +725,6 @@ This functionality allows running multiple actions in one or more documents. Act ### Known Issues - `StartAnalyzeHealthcareEntities` is in gated preview and can not be used with AAD credentials. For more information, see [the Text Analytics for Health documentation](https://docs.microsoft.com/azure/cognitive-services/text-analytics/how-tos/text-analytics-for-health?tabs=ner#request-access-to-the-public-preview). -- The parameter `CategoriesFilter` in `RecognizePiiEntitiesOptions` is currently not working when used in `StartAnalyzeBatchActions`. [19237](https://github.com/Azure/azure-sdk-for-net/issues/19237). - At time of this SDK release, the `ModelVersion` option to `StartAnalyzeHealthcareEntities` is ignored by the service. The service always processes the operation using the `latest` model. ## Troubleshooting 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 1070da4cdc17..ac94f3b1a794 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 @@ -83,6 +83,8 @@ internal AnalyzeHealthcareEntitiesResultCollection() : base (default(System.Coll 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 { } } @@ -229,6 +231,8 @@ internal EntityDataSource() { } 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 { } } } @@ -252,7 +256,7 @@ public partial class HealthcareEntity { internal HealthcareEntity() { } public Azure.AI.TextAnalytics.HealthcareEntityAssertion Assertion { get { throw null; } } - public string Category { get { throw null; } } + public Azure.AI.TextAnalytics.HealthcareEntityCategory Category { get { throw null; } } public double ConfidenceScore { get { throw null; } } public System.Collections.Generic.IReadOnlyCollection DataSources { get { throw null; } } public int Length { get { throw null; } } @@ -269,6 +273,48 @@ internal HealthcareEntityAssertion() { } public Azure.AI.TextAnalytics.EntityConditionality? Conditionality { get { throw null; } } public override string ToString() { throw null; } } + [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] + public readonly partial struct HealthcareEntityCategory : System.IEquatable + { + private readonly object _dummy; + private readonly int _dummyPrimitive; + public HealthcareEntityCategory(string value) { throw null; } + public static Azure.AI.TextAnalytics.HealthcareEntityCategory AdministrativeEvent { get { throw null; } } + public static Azure.AI.TextAnalytics.HealthcareEntityCategory AGE { get { throw null; } } + public static Azure.AI.TextAnalytics.HealthcareEntityCategory BodyStructure { get { throw null; } } + public static Azure.AI.TextAnalytics.HealthcareEntityCategory CareEnvironment { get { throw null; } } + public static Azure.AI.TextAnalytics.HealthcareEntityCategory ConditionQualifier { get { throw null; } } + public static Azure.AI.TextAnalytics.HealthcareEntityCategory Date { get { throw null; } } + public static Azure.AI.TextAnalytics.HealthcareEntityCategory Diagnosis { get { throw null; } } + public static Azure.AI.TextAnalytics.HealthcareEntityCategory Direction { get { throw null; } } + public static Azure.AI.TextAnalytics.HealthcareEntityCategory Dosage { get { throw null; } } + public static Azure.AI.TextAnalytics.HealthcareEntityCategory ExaminationName { get { throw null; } } + public static Azure.AI.TextAnalytics.HealthcareEntityCategory FamilyRelation { get { throw null; } } + public static Azure.AI.TextAnalytics.HealthcareEntityCategory Frequency { get { throw null; } } + public static Azure.AI.TextAnalytics.HealthcareEntityCategory Gender { get { throw null; } } + public static Azure.AI.TextAnalytics.HealthcareEntityCategory GeneORProtein { get { throw null; } } + public static Azure.AI.TextAnalytics.HealthcareEntityCategory HealthcareProfession { get { throw null; } } + public static Azure.AI.TextAnalytics.HealthcareEntityCategory MeasurementUnit { get { throw null; } } + public static Azure.AI.TextAnalytics.HealthcareEntityCategory MeasurementValue { get { throw null; } } + public static Azure.AI.TextAnalytics.HealthcareEntityCategory MedicationClass { get { throw null; } } + public static Azure.AI.TextAnalytics.HealthcareEntityCategory MedicationForm { get { throw null; } } + public static Azure.AI.TextAnalytics.HealthcareEntityCategory MedicationName { get { throw null; } } + public static Azure.AI.TextAnalytics.HealthcareEntityCategory MedicationRoute { get { throw null; } } + public static Azure.AI.TextAnalytics.HealthcareEntityCategory RelationalOperator { get { throw null; } } + public static Azure.AI.TextAnalytics.HealthcareEntityCategory SymptomORSign { get { throw null; } } + public static Azure.AI.TextAnalytics.HealthcareEntityCategory Time { get { throw null; } } + public static Azure.AI.TextAnalytics.HealthcareEntityCategory TreatmentName { get { throw null; } } + public static Azure.AI.TextAnalytics.HealthcareEntityCategory Variant { get { throw null; } } + public bool Equals(Azure.AI.TextAnalytics.HealthcareEntityCategory other) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override bool Equals(object obj) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override int GetHashCode() { throw null; } + public static bool operator ==(Azure.AI.TextAnalytics.HealthcareEntityCategory left, Azure.AI.TextAnalytics.HealthcareEntityCategory right) { throw null; } + public static implicit operator Azure.AI.TextAnalytics.HealthcareEntityCategory (string value) { throw null; } + public static bool operator !=(Azure.AI.TextAnalytics.HealthcareEntityCategory left, Azure.AI.TextAnalytics.HealthcareEntityCategory right) { throw null; } + public override string ToString() { throw null; } + } public partial class HealthcareEntityRelation { internal HealthcareEntityRelation() { } @@ -566,6 +612,8 @@ public enum PiiEntityDomain 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 { } } } @@ -588,6 +636,8 @@ internal RecognizeEntitiesResultCollection() : base (default(System.Collections. 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 { } } } @@ -610,6 +660,8 @@ internal RecognizeLinkedEntitiesResultCollection() : base (default(System.Collec 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 { } } @@ -678,6 +730,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; } } @@ -764,13 +817,13 @@ 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_1_Preview_5) { } + public TextAnalyticsClientOptions(Azure.AI.TextAnalytics.TextAnalyticsClientOptions.ServiceVersion version = Azure.AI.TextAnalytics.TextAnalyticsClientOptions.ServiceVersion.V3_1) { } public string DefaultCountryHint { get { throw null; } set { } } public string DefaultLanguage { get { throw null; } set { } } public enum ServiceVersion { V3_0 = 1, - V3_1_Preview_5 = 2, + V3_1 = 2, } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] @@ -824,8 +877,8 @@ public static partial class TextAnalyticsModelFactory 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; } - public static Azure.AI.TextAnalytics.AnalyzeSentimentActionResult AnalyzeSentimentActionResult(Azure.AI.TextAnalytics.AnalyzeSentimentResultCollection result, System.DateTimeOffset completedOn) { throw null; } - public static Azure.AI.TextAnalytics.AnalyzeSentimentActionResult AnalyzeSentimentActionResult(string code, string message) { throw null; } + public static Azure.AI.TextAnalytics.AnalyzeSentimentActionResult AnalyzeSentimentActionResult(Azure.AI.TextAnalytics.AnalyzeSentimentResultCollection result, string actionName, System.DateTimeOffset completedOn) { 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; } @@ -840,8 +893,8 @@ public static partial class TextAnalyticsModelFactory 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; } - public static Azure.AI.TextAnalytics.ExtractKeyPhrasesActionResult ExtractKeyPhrasesActionResult(Azure.AI.TextAnalytics.ExtractKeyPhrasesResultCollection result, System.DateTimeOffset completedOn) { throw null; } - public static Azure.AI.TextAnalytics.ExtractKeyPhrasesActionResult ExtractKeyPhrasesActionResult(string code, string message) { throw null; } + public static Azure.AI.TextAnalytics.ExtractKeyPhrasesActionResult ExtractKeyPhrasesActionResult(Azure.AI.TextAnalytics.ExtractKeyPhrasesResultCollection result, string actionName, System.DateTimeOffset completedOn) { 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; } @@ -850,27 +903,27 @@ public static partial class TextAnalyticsModelFactory public static Azure.AI.TextAnalytics.HealthcareEntityRelation HealthcareEntityRelation(Azure.AI.TextAnalytics.HealthcareEntityRelationType relationType, System.Collections.Generic.IEnumerable roles) { throw null; } public static Azure.AI.TextAnalytics.HealthcareEntityRelationRole HealthcareEntityRelationRole(string text, string category, int offset, int length, double confidenceScore, string entityName) { throw null; } public static Azure.AI.TextAnalytics.KeyPhraseCollection KeyPhraseCollection(System.Collections.Generic.IList keyPhrases, System.Collections.Generic.IList warnings = null) { throw null; } - public static Azure.AI.TextAnalytics.LinkedEntity LinkedEntity(string name = null, System.Collections.Generic.IEnumerable matches = null, string language = null, string dataSourceEntityId = null, System.Uri url = null, string dataSource = null, string bingEntitySearchApiId = null) { throw null; } [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] public static Azure.AI.TextAnalytics.LinkedEntity LinkedEntity(string name, string dataSourceEntityId, string language, string dataSource, System.Uri url, System.Collections.Generic.IEnumerable matches) { throw null; } public static Azure.AI.TextAnalytics.LinkedEntity LinkedEntity(string name, string dataSourceEntityId, string language, string dataSource, System.Uri url, System.Collections.Generic.IEnumerable matches, string bingEntitySearchApiId) { throw null; } public static Azure.AI.TextAnalytics.LinkedEntityCollection LinkedEntityCollection(System.Collections.Generic.IList entities, System.Collections.Generic.IList warnings = null) { throw null; } - public static Azure.AI.TextAnalytics.LinkedEntityMatch LinkedEntityMatch(double confidenceScore = 0, string text = null, int offset = 0, int length = 0) { throw null; } [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; } 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; } - public static Azure.AI.TextAnalytics.RecognizeEntitiesActionResult RecognizeEntitiesActionResult(Azure.AI.TextAnalytics.RecognizeEntitiesResultCollection result, System.DateTimeOffset completedOn) { throw null; } - public static Azure.AI.TextAnalytics.RecognizeEntitiesActionResult RecognizeEntitiesActionResult(string code, string message) { throw null; } + public static Azure.AI.TextAnalytics.RecognizeEntitiesActionResult RecognizeEntitiesActionResult(Azure.AI.TextAnalytics.RecognizeEntitiesResultCollection result, string actionName, System.DateTimeOffset completedOn) { 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; } - public static Azure.AI.TextAnalytics.RecognizeLinkedEntitiesActionResult RecognizeLinkedEntitiesActionResult(Azure.AI.TextAnalytics.RecognizeLinkedEntitiesResultCollection result, System.DateTimeOffset completedOn) { throw null; } - public static Azure.AI.TextAnalytics.RecognizeLinkedEntitiesActionResult RecognizeLinkedEntitiesActionResult(string code, string message) { throw null; } + public static Azure.AI.TextAnalytics.RecognizeLinkedEntitiesActionResult RecognizeLinkedEntitiesActionResult(Azure.AI.TextAnalytics.RecognizeLinkedEntitiesResultCollection result, string actionName, System.DateTimeOffset completedOn) { 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; } + public static Azure.AI.TextAnalytics.RecognizePiiEntitiesActionResult RecognizePiiEntitiesActionResult(Azure.AI.TextAnalytics.RecognizePiiEntitiesResultCollection result, string actionName, System.DateTimeOffset completedOn) { 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; } @@ -880,8 +933,6 @@ 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, int offset, int length, System.Collections.Generic.IEnumerable opinions) { throw null; } public static Azure.AI.TextAnalytics.SentimentConfidenceScores SentimentConfidenceScores(double positiveScore, double neutralScore, double negativeScore) { throw null; } public static Azure.AI.TextAnalytics.TargetSentiment TargetSentiment(Azure.AI.TextAnalytics.TextSentiment sentiment, string text, double positiveScore, double negativeScore, int offset, int length) { throw null; } - public static Azure.AI.TextAnalytics.TextAnalyticsActionResult TextAnalyticsActionResult(System.DateTimeOffset completedOn) { throw null; } - public static Azure.AI.TextAnalytics.TextAnalyticsActionResult TextAnalyticsActionResult(string code, string message) { throw null; } public static Azure.AI.TextAnalytics.TextAnalyticsError TextAnalyticsError(string code, string message, string target = null) { throw null; } public static Azure.AI.TextAnalytics.TextAnalyticsWarning TextAnalyticsWarning(string code, string message) { throw null; } public static Azure.AI.TextAnalytics.TextDocumentBatchStatistics TextDocumentBatchStatistics(int documentCount, int validDocumentCount, int invalidDocumentCount, long transactionCount) { throw null; } @@ -897,8 +948,6 @@ public static partial class TextAnalyticsModelFactory public static Azure.AI.TextAnalytics.TextAnalyticsOperationStatus Cancelling { get { throw null; } } public static Azure.AI.TextAnalytics.TextAnalyticsOperationStatus Failed { get { throw null; } } public static Azure.AI.TextAnalytics.TextAnalyticsOperationStatus NotStarted { get { throw null; } } - public static Azure.AI.TextAnalytics.TextAnalyticsOperationStatus PartiallyCompleted { get { throw null; } } - public static Azure.AI.TextAnalytics.TextAnalyticsOperationStatus PartiallySucceeded { get { throw null; } } public static Azure.AI.TextAnalytics.TextAnalyticsOperationStatus Rejected { get { throw null; } } public static Azure.AI.TextAnalytics.TextAnalyticsOperationStatus Running { get { throw null; } } public static Azure.AI.TextAnalytics.TextAnalyticsOperationStatus Succeeded { get { throw null; } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/samples/Sample_AnalyzeActions.md b/sdk/textanalytics/Azure.AI.TextAnalytics/samples/Sample_AnalyzeActions.md index 0643efbaa40a..b5dcb680414a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/samples/Sample_AnalyzeActions.md +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/samples/Sample_AnalyzeActions.md @@ -70,6 +70,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++}"); @@ -92,6 +93,7 @@ To run multiple actions in multiple documents, call `StartAnalyzeActionsAsync` o docNumber = 1; foreach (RecognizePiiEntitiesActionResult piiActionResults in piiResults) { + Console.WriteLine($" Action name: {piiActionResults.ActionName}"); foreach (RecognizePiiEntitiesResult documentResults in piiActionResults.DocumentsResults) { Console.WriteLine($" Document #{docNumber++}"); @@ -114,6 +116,7 @@ To run multiple actions in multiple documents, call `StartAnalyzeActionsAsync` o docNumber = 1; foreach (ExtractKeyPhrasesActionResult keyPhrasesActionResult in keyPhrasesResults) { + Console.WriteLine($" Action name: {keyPhrasesActionResult.ActionName}"); foreach (ExtractKeyPhrasesResult documentResults in keyPhrasesActionResult.DocumentsResults) { Console.WriteLine($" Document #{docNumber++}"); @@ -131,6 +134,7 @@ To run multiple actions in multiple documents, call `StartAnalyzeActionsAsync` o docNumber = 1; foreach (RecognizeLinkedEntitiesActionResult linkedEntitiesActionResults in entityLinkingResults) { + Console.WriteLine($" Action name: {linkedEntitiesActionResults.ActionName}"); foreach (RecognizeLinkedEntitiesResult documentResults in linkedEntitiesActionResults.DocumentsResults) { Console.WriteLine($" Document #{docNumber++}"); @@ -162,6 +166,7 @@ To run multiple actions in multiple documents, call `StartAnalyzeActionsAsync` o docNumber = 1; foreach (AnalyzeSentimentActionResult analyzeSentimentActionsResult in analyzeSentimentResults) { + Console.WriteLine($" Action name: {analyzeSentimentActionsResult.ActionName}"); foreach (AnalyzeSentimentResult documentResults in analyzeSentimentActionsResult.DocumentsResults) { Console.WriteLine($" Document #{docNumber++}"); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeActionsOperation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeActionsOperation.cs index d9154704162d..586ef50792cd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeActionsOperation.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeActionsOperation.cs @@ -300,10 +300,16 @@ async ValueTask>> IOperation< Response rawResponse = response.GetRawResponse(); - // TODO - Remove PartiallySucceeded once service deploys this to WestUS2 + if (response.Value.Status == TextAnalyticsOperationStatus.Failed) + { + if (CheckIfGenericError(response.Value)) + { + RequestFailedException requestFailedException = await ClientCommon.CreateExceptionForFailedOperationAsync(async, _diagnostics, rawResponse, response.Value.Errors).ConfigureAwait(false); + return OperationState>.Failure(rawResponse, requestFailedException); + } + } + if (response.Value.Status == TextAnalyticsOperationStatus.Succeeded || - response.Value.Status == TextAnalyticsOperationStatus.PartiallySucceeded || - response.Value.Status == TextAnalyticsOperationStatus.PartiallyCompleted || response.Value.Status == TextAnalyticsOperationStatus.Failed) { string nextLink = response.Value.NextLink; @@ -315,5 +321,15 @@ async ValueTask>> IOperation< return OperationState>.Pending(rawResponse); } + + private static bool CheckIfGenericError(AnalyzeJobState jobState) + { + foreach (TextAnalyticsErrorInternal error in jobState.Errors) + { + if (string.IsNullOrEmpty(error.Target)) + return true; + } + return false; + } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeSentimentAction.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeSentimentAction.cs index f89fa5cef81f..bdc31f936f6e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeSentimentAction.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeSentimentAction.cs @@ -20,6 +20,19 @@ public AnalyzeSentimentAction() { } + /// + /// Initializes a new instance of the + /// class based on the values of a . + /// It sets the , the , + /// and the properties. + /// + public AnalyzeSentimentAction(AnalyzeSentimentOptions options) + { + ModelVersion = options.ModelVersion; + DisableServiceLogs = options.DisableServiceLogs; + IncludeOpinionMining = options.IncludeOpinionMining; + } + /// /// Gets or sets a value that, if set, indicates the version of the text /// analytics model that will be used to generate the result. For supported @@ -34,7 +47,7 @@ public AnalyzeSentimentAction() /// Setting this property to true, disables input logging and may limit our ability to investigate issues that occur. /// /// - /// This property only applies for and up. + /// This property only applies for and up. /// public bool? DisableServiceLogs { get; set; } @@ -46,8 +59,13 @@ public AnalyzeSentimentAction() /// Only available for service version v3.1-preview and up. /// /// - /// This property only has value for and up. + /// 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 1c8625c99e5e..7b0b0a5d5eb7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeSentimentActionResult.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeSentimentActionResult.cs @@ -13,28 +13,20 @@ public class AnalyzeSentimentActionResult : TextAnalyticsActionResult { private readonly AnalyzeSentimentResultCollection _documentsResults; - internal AnalyzeSentimentActionResult(AnalyzeSentimentResultCollection result, DateTimeOffset completedOn, TextAnalyticsErrorInternal error) - : base(completedOn, error) - { - _documentsResults = result; - } - /// - /// Intended for mocking purposes only. + /// Successful action. /// - internal AnalyzeSentimentActionResult( - AnalyzeSentimentResultCollection result, - DateTimeOffset completedOn) : base(completedOn) + internal AnalyzeSentimentActionResult(AnalyzeSentimentResultCollection result, string actionName, DateTimeOffset completedOn) + : base(completedOn, actionName) { _documentsResults = result; } /// - /// Intended for mocking purposes only. + /// Action with an error. /// - internal AnalyzeSentimentActionResult(TextAnalyticsErrorInternal error) : base(error) - { - } + internal AnalyzeSentimentActionResult(string actionName, DateTimeOffset completedOn, TextAnalyticsErrorInternal error) + : base(completedOn, actionName, error) { } /// /// Gets the result of the execution of an per each input document. diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeSentimentOptions.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeSentimentOptions.cs index 8cebbf877646..b52ffb4a178a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeSentimentOptions.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeSentimentOptions.cs @@ -33,7 +33,7 @@ internal AnalyzeSentimentOptions(TextAnalyticsRequestOptions options) /// Only available for service version v3.1-preview and up. /// /// - /// This property only has value for and up. + /// This property only has value for and up. /// public bool? IncludeOpinionMining { get; set; } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/ExtractKeyPhrasesAction.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/ExtractKeyPhrasesAction.cs index b7cf169bd621..ca0f2d6fc3ce 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/ExtractKeyPhrasesAction.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/ExtractKeyPhrasesAction.cs @@ -20,6 +20,17 @@ public ExtractKeyPhrasesAction() { } + /// + /// Initializes a new instance of the + /// class based on the values of a . + /// It sets the and properties. + /// + public ExtractKeyPhrasesAction(TextAnalyticsRequestOptions options) + { + ModelVersion = options.ModelVersion; + DisableServiceLogs = options.DisableServiceLogs; + } + /// /// Gets or sets a value that, if set, indicates the version of the text /// analytics model that will be used to generate the result. For supported @@ -34,8 +45,13 @@ public ExtractKeyPhrasesAction() /// Setting this property to true, disables input logging and may limit our ability to investigate issues that occur. /// /// - /// This property only applies for and up. + /// 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 ce161ac4ddbf..847695e57b47 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/ExtractKeyPhrasesActionResult.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/ExtractKeyPhrasesActionResult.cs @@ -13,28 +13,20 @@ public class ExtractKeyPhrasesActionResult : TextAnalyticsActionResult { private readonly ExtractKeyPhrasesResultCollection _documentsResults; - internal ExtractKeyPhrasesActionResult(ExtractKeyPhrasesResultCollection result, DateTimeOffset completedOn, TextAnalyticsErrorInternal error) - : base(completedOn, error) - { - _documentsResults = result; - } - /// - /// Intended for mocking purposes only. + /// Successful action. /// - internal ExtractKeyPhrasesActionResult( - ExtractKeyPhrasesResultCollection result, - DateTimeOffset completedOn) : base(completedOn) + internal ExtractKeyPhrasesActionResult(ExtractKeyPhrasesResultCollection result, string actionName, DateTimeOffset completedOn) + : base(completedOn, actionName) { _documentsResults = result; } /// - /// Intended for mocking purposes only. + /// Action with an error. /// - internal ExtractKeyPhrasesActionResult(TextAnalyticsErrorInternal error) : base(error) - { - } + internal ExtractKeyPhrasesActionResult(string actionName, DateTimeOffset completedOn, TextAnalyticsErrorInternal error) + : base(completedOn, actionName, 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 3636d470b6c2..8121a7d3eee4 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 @@ -15,7 +15,6 @@ internal partial class AnalyzeTasks { internal static AnalyzeTasks DeserializeAnalyzeTasks(JsonElement element) { - Optional details = default; int completed = default; int failed = default; int inProgress = default; @@ -27,16 +26,6 @@ internal static AnalyzeTasks DeserializeAnalyzeTasks(JsonElement element) Optional> sentimentAnalysisTasks = default; foreach (var property in element.EnumerateObject()) { - if (property.NameEquals("details")) - { - if (property.Value.ValueKind == JsonValueKind.Null) - { - property.ThrowNonNullablePropertyIsNull(); - continue; - } - details = TasksStateTasksDetails.DeserializeTasksStateTasksDetails(property.Value); - continue; - } if (property.NameEquals("completed")) { completed = property.Value.GetInt32(); @@ -133,7 +122,7 @@ internal static AnalyzeTasks DeserializeAnalyzeTasks(JsonElement element) continue; } } - return new AnalyzeTasks(details.Value, completed, failed, inProgress, total, Optional.ToList(entityRecognitionTasks), Optional.ToList(entityRecognitionPiiTasks), Optional.ToList(keyPhraseExtractionTasks), Optional.ToList(entityLinkingTasks), Optional.ToList(sentimentAnalysisTasks)); + return new AnalyzeTasks(completed, failed, inProgress, total, Optional.ToList(entityRecognitionTasks), Optional.ToList(entityRecognitionPiiTasks), Optional.ToList(keyPhraseExtractionTasks), Optional.ToList(entityLinkingTasks), Optional.ToList(sentimentAnalysisTasks)); } } } 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 5f2338bb0906..f19d77dd8f75 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeTasks.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeTasks.cs @@ -32,7 +32,6 @@ internal AnalyzeTasks(int completed, int failed, int inProgress, int total) } /// Initializes a new instance of AnalyzeTasks. - /// . /// . /// . /// . @@ -42,9 +41,8 @@ internal AnalyzeTasks(int completed, int failed, int inProgress, int total) /// . /// . /// . - internal AnalyzeTasks(TasksStateTasksDetails details, int completed, int failed, int inProgress, int total, IReadOnlyList entityRecognitionTasks, IReadOnlyList entityRecognitionPiiTasks, IReadOnlyList keyPhraseExtractionTasks, IReadOnlyList entityLinkingTasks, IReadOnlyList sentimentAnalysisTasks) + internal AnalyzeTasks(int completed, int failed, int inProgress, int total, IReadOnlyList entityRecognitionTasks, IReadOnlyList entityRecognitionPiiTasks, IReadOnlyList keyPhraseExtractionTasks, IReadOnlyList entityLinkingTasks, IReadOnlyList sentimentAnalysisTasks) { - Details = details; Completed = completed; Failed = failed; InProgress = inProgress; @@ -56,7 +54,6 @@ internal AnalyzeTasks(TasksStateTasksDetails details, int completed, int failed, SentimentAnalysisTasks = sentimentAnalysisTasks; } - public TasksStateTasksDetails Details { get; } public int Completed { get; } public int Failed { get; } public int InProgress { get; } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTask.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTask.Serialization.cs index 649ae0ae1f3e..bdd14813fafa 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTask.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTask.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/EntitiesTask.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTask.cs index 1adaadc70044..6db327e9ade5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTask.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTask.cs @@ -16,5 +16,6 @@ public EntitiesTask() } public EntitiesTaskParameters Parameters { get; set; } + public string TaskName { get; set; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityLinkingTask.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityLinkingTask.Serialization.cs index 73b4985cb8f1..bc86e03bfdf6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityLinkingTask.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityLinkingTask.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/EntityLinkingTask.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityLinkingTask.cs index f338c593e48a..424da9c61261 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityLinkingTask.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityLinkingTask.cs @@ -16,5 +16,6 @@ public EntityLinkingTask() } public EntityLinkingTaskParameters Parameters { get; set; } + public string TaskName { get; set; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityLinkingTasksItem.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityLinkingTasksItem.Serialization.cs index aed13b394773..7e591847c5c9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityLinkingTasksItem.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityLinkingTasksItem.Serialization.cs @@ -18,7 +18,7 @@ internal static EntityLinkingTasksItem DeserializeEntityLinkingTasksItem(JsonEle { Optional results = default; DateTimeOffset lastUpdateDateTime = default; - Optional name = default; + string taskName = default; TextAnalyticsOperationStatus status = default; foreach (var property in element.EnumerateObject()) { @@ -37,9 +37,9 @@ internal static EntityLinkingTasksItem DeserializeEntityLinkingTasksItem(JsonEle lastUpdateDateTime = property.Value.GetDateTimeOffset("O"); continue; } - if (property.NameEquals("name")) + if (property.NameEquals("taskName")) { - name = property.Value.GetString(); + taskName = property.Value.GetString(); continue; } if (property.NameEquals("status")) @@ -48,7 +48,7 @@ internal static EntityLinkingTasksItem DeserializeEntityLinkingTasksItem(JsonEle continue; } } - return new EntityLinkingTasksItem(lastUpdateDateTime, name.Value, status, results.Value); + return new EntityLinkingTasksItem(lastUpdateDateTime, taskName, status, results.Value); } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityLinkingTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityLinkingTasksItem.cs index 91d6779a3036..21c3c29f57bf 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityLinkingTasksItem.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityLinkingTasksItem.cs @@ -15,18 +15,30 @@ internal partial class EntityLinkingTasksItem : TaskState { /// Initializes a new instance of EntityLinkingTasksItem. /// . + /// . /// . - internal EntityLinkingTasksItem(DateTimeOffset lastUpdateDateTime, TextAnalyticsOperationStatus status) : base(lastUpdateDateTime, status) + /// is null. + internal EntityLinkingTasksItem(DateTimeOffset lastUpdateDateTime, string taskName, TextAnalyticsOperationStatus status) : base(lastUpdateDateTime, taskName, status) { + if (taskName == null) + { + throw new ArgumentNullException(nameof(taskName)); + } } /// Initializes a new instance of EntityLinkingTasksItem. /// . - /// . + /// . /// . /// . - internal EntityLinkingTasksItem(DateTimeOffset lastUpdateDateTime, string name, TextAnalyticsOperationStatus status, EntityLinkingResult results) : base(lastUpdateDateTime, name, status) + /// is null. + internal EntityLinkingTasksItem(DateTimeOffset lastUpdateDateTime, string taskName, TextAnalyticsOperationStatus status, EntityLinkingResult results) : base(lastUpdateDateTime, taskName, status) { + if (taskName == null) + { + throw new ArgumentNullException(nameof(taskName)); + } + Results = results; } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItem.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItem.Serialization.cs index 1bc596717eef..fe66be0c8683 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItem.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItem.Serialization.cs @@ -18,7 +18,7 @@ internal static EntityRecognitionPiiTasksItem DeserializeEntityRecognitionPiiTas { Optional results = default; DateTimeOffset lastUpdateDateTime = default; - Optional name = default; + string taskName = default; TextAnalyticsOperationStatus status = default; foreach (var property in element.EnumerateObject()) { @@ -37,9 +37,9 @@ internal static EntityRecognitionPiiTasksItem DeserializeEntityRecognitionPiiTas lastUpdateDateTime = property.Value.GetDateTimeOffset("O"); continue; } - if (property.NameEquals("name")) + if (property.NameEquals("taskName")) { - name = property.Value.GetString(); + taskName = property.Value.GetString(); continue; } if (property.NameEquals("status")) @@ -48,7 +48,7 @@ internal static EntityRecognitionPiiTasksItem DeserializeEntityRecognitionPiiTas continue; } } - return new EntityRecognitionPiiTasksItem(lastUpdateDateTime, name.Value, status, results.Value); + return new EntityRecognitionPiiTasksItem(lastUpdateDateTime, taskName, status, results.Value); } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItem.cs index 2ae8fb88696c..9dec3a2452fd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItem.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItem.cs @@ -15,18 +15,30 @@ internal partial class EntityRecognitionPiiTasksItem : TaskState { /// Initializes a new instance of EntityRecognitionPiiTasksItem. /// . + /// . /// . - internal EntityRecognitionPiiTasksItem(DateTimeOffset lastUpdateDateTime, TextAnalyticsOperationStatus status) : base(lastUpdateDateTime, status) + /// is null. + internal EntityRecognitionPiiTasksItem(DateTimeOffset lastUpdateDateTime, string taskName, TextAnalyticsOperationStatus status) : base(lastUpdateDateTime, taskName, status) { + if (taskName == null) + { + throw new ArgumentNullException(nameof(taskName)); + } } /// Initializes a new instance of EntityRecognitionPiiTasksItem. /// . - /// . + /// . /// . /// . - internal EntityRecognitionPiiTasksItem(DateTimeOffset lastUpdateDateTime, string name, TextAnalyticsOperationStatus status, PiiEntitiesResult results) : base(lastUpdateDateTime, name, status) + /// is null. + internal EntityRecognitionPiiTasksItem(DateTimeOffset lastUpdateDateTime, string taskName, TextAnalyticsOperationStatus status, PiiEntitiesResult results) : base(lastUpdateDateTime, taskName, status) { + if (taskName == null) + { + throw new ArgumentNullException(nameof(taskName)); + } + Results = results; } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItem.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItem.Serialization.cs index b599d3b55ad2..82f167397d00 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItem.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItem.Serialization.cs @@ -18,7 +18,7 @@ internal static EntityRecognitionTasksItem DeserializeEntityRecognitionTasksItem { Optional results = default; DateTimeOffset lastUpdateDateTime = default; - Optional name = default; + string taskName = default; TextAnalyticsOperationStatus status = default; foreach (var property in element.EnumerateObject()) { @@ -37,9 +37,9 @@ internal static EntityRecognitionTasksItem DeserializeEntityRecognitionTasksItem lastUpdateDateTime = property.Value.GetDateTimeOffset("O"); continue; } - if (property.NameEquals("name")) + if (property.NameEquals("taskName")) { - name = property.Value.GetString(); + taskName = property.Value.GetString(); continue; } if (property.NameEquals("status")) @@ -48,7 +48,7 @@ internal static EntityRecognitionTasksItem DeserializeEntityRecognitionTasksItem continue; } } - return new EntityRecognitionTasksItem(lastUpdateDateTime, name.Value, status, results.Value); + return new EntityRecognitionTasksItem(lastUpdateDateTime, taskName, status, results.Value); } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItem.cs index ebc887780db6..abe360170657 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItem.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItem.cs @@ -15,18 +15,30 @@ internal partial class EntityRecognitionTasksItem : TaskState { /// Initializes a new instance of EntityRecognitionTasksItem. /// . + /// . /// . - internal EntityRecognitionTasksItem(DateTimeOffset lastUpdateDateTime, TextAnalyticsOperationStatus status) : base(lastUpdateDateTime, status) + /// is null. + internal EntityRecognitionTasksItem(DateTimeOffset lastUpdateDateTime, string taskName, TextAnalyticsOperationStatus status) : base(lastUpdateDateTime, taskName, status) { + if (taskName == null) + { + throw new ArgumentNullException(nameof(taskName)); + } } /// Initializes a new instance of EntityRecognitionTasksItem. /// . - /// . + /// . /// . /// . - internal EntityRecognitionTasksItem(DateTimeOffset lastUpdateDateTime, string name, TextAnalyticsOperationStatus status, EntitiesResult results) : base(lastUpdateDateTime, name, status) + /// is null. + internal EntityRecognitionTasksItem(DateTimeOffset lastUpdateDateTime, string taskName, TextAnalyticsOperationStatus status, EntitiesResult results) : base(lastUpdateDateTime, taskName, status) { + if (taskName == null) + { + throw new ArgumentNullException(nameof(taskName)); + } + Results = results; } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntityCategory.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntityCategory.cs new file mode 100644 index 000000000000..ef947580cb9f --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntityCategory.cs @@ -0,0 +1,123 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.ComponentModel; + +namespace Azure.AI.TextAnalytics +{ + /// Healthcare Entity Category. + public readonly partial struct HealthcareEntityCategory : IEquatable + { + private readonly string _value; + + /// Determines if two values are the same. + /// is null. + public HealthcareEntityCategory(string value) + { + _value = value ?? throw new ArgumentNullException(nameof(value)); + } + + private const string BodyStructureValue = "BODY_STRUCTURE"; + private const string AGEValue = "AGE"; + private const string GenderValue = "GENDER"; + private const string ExaminationNameValue = "EXAMINATION_NAME"; + private const string DateValue = "DATE"; + private const string DirectionValue = "DIRECTION"; + private const string FrequencyValue = "FREQUENCY"; + private const string MeasurementValueValue = "MEASUREMENT_VALUE"; + private const string MeasurementUnitValue = "MEASUREMENT_UNIT"; + private const string RelationalOperatorValue = "RELATIONAL_OPERATOR"; + private const string TimeValue = "TIME"; + private const string GeneORProteinValue = "GENE_OR_PROTEIN"; + private const string VariantValue = "VARIANT"; + private const string AdministrativeEventValue = "ADMINISTRATIVE_EVENT"; + private const string CareEnvironmentValue = "CARE_ENVIRONMENT"; + private const string HealthcareProfessionValue = "HEALTHCARE_PROFESSION"; + private const string DiagnosisValue = "DIAGNOSIS"; + private const string SymptomORSignValue = "SYMPTOM_OR_SIGN"; + private const string ConditionQualifierValue = "CONDITION_QUALIFIER"; + private const string MedicationClassValue = "MEDICATION_CLASS"; + private const string MedicationNameValue = "MEDICATION_NAME"; + private const string DosageValue = "DOSAGE"; + private const string MedicationFormValue = "MEDICATION_FORM"; + private const string MedicationRouteValue = "MEDICATION_ROUTE"; + private const string FamilyRelationValue = "FAMILY_RELATION"; + private const string TreatmentNameValue = "TREATMENT_NAME"; + + /// BODY_STRUCTURE. + public static HealthcareEntityCategory BodyStructure { get; } = new HealthcareEntityCategory(BodyStructureValue); + /// AGE. + public static HealthcareEntityCategory AGE { get; } = new HealthcareEntityCategory(AGEValue); + /// GENDER. + public static HealthcareEntityCategory Gender { get; } = new HealthcareEntityCategory(GenderValue); + /// EXAMINATION_NAME. + public static HealthcareEntityCategory ExaminationName { get; } = new HealthcareEntityCategory(ExaminationNameValue); + /// DATE. + public static HealthcareEntityCategory Date { get; } = new HealthcareEntityCategory(DateValue); + /// DIRECTION. + public static HealthcareEntityCategory Direction { get; } = new HealthcareEntityCategory(DirectionValue); + /// FREQUENCY. + public static HealthcareEntityCategory Frequency { get; } = new HealthcareEntityCategory(FrequencyValue); + /// MEASUREMENT_VALUE. + public static HealthcareEntityCategory MeasurementValue { get; } = new HealthcareEntityCategory(MeasurementValueValue); + /// MEASUREMENT_UNIT. + public static HealthcareEntityCategory MeasurementUnit { get; } = new HealthcareEntityCategory(MeasurementUnitValue); + /// RELATIONAL_OPERATOR. + public static HealthcareEntityCategory RelationalOperator { get; } = new HealthcareEntityCategory(RelationalOperatorValue); + /// TIME. + public static HealthcareEntityCategory Time { get; } = new HealthcareEntityCategory(TimeValue); + /// GENE_OR_PROTEIN. + public static HealthcareEntityCategory GeneORProtein { get; } = new HealthcareEntityCategory(GeneORProteinValue); + /// VARIANT. + public static HealthcareEntityCategory Variant { get; } = new HealthcareEntityCategory(VariantValue); + /// ADMINISTRATIVE_EVENT. + public static HealthcareEntityCategory AdministrativeEvent { get; } = new HealthcareEntityCategory(AdministrativeEventValue); + /// CARE_ENVIRONMENT. + public static HealthcareEntityCategory CareEnvironment { get; } = new HealthcareEntityCategory(CareEnvironmentValue); + /// HEALTHCARE_PROFESSION. + public static HealthcareEntityCategory HealthcareProfession { get; } = new HealthcareEntityCategory(HealthcareProfessionValue); + /// DIAGNOSIS. + public static HealthcareEntityCategory Diagnosis { get; } = new HealthcareEntityCategory(DiagnosisValue); + /// SYMPTOM_OR_SIGN. + public static HealthcareEntityCategory SymptomORSign { get; } = new HealthcareEntityCategory(SymptomORSignValue); + /// CONDITION_QUALIFIER. + public static HealthcareEntityCategory ConditionQualifier { get; } = new HealthcareEntityCategory(ConditionQualifierValue); + /// MEDICATION_CLASS. + public static HealthcareEntityCategory MedicationClass { get; } = new HealthcareEntityCategory(MedicationClassValue); + /// MEDICATION_NAME. + public static HealthcareEntityCategory MedicationName { get; } = new HealthcareEntityCategory(MedicationNameValue); + /// DOSAGE. + public static HealthcareEntityCategory Dosage { get; } = new HealthcareEntityCategory(DosageValue); + /// MEDICATION_FORM. + public static HealthcareEntityCategory MedicationForm { get; } = new HealthcareEntityCategory(MedicationFormValue); + /// MEDICATION_ROUTE. + public static HealthcareEntityCategory MedicationRoute { get; } = new HealthcareEntityCategory(MedicationRouteValue); + /// FAMILY_RELATION. + public static HealthcareEntityCategory FamilyRelation { get; } = new HealthcareEntityCategory(FamilyRelationValue); + /// TREATMENT_NAME. + public static HealthcareEntityCategory TreatmentName { get; } = new HealthcareEntityCategory(TreatmentNameValue); + /// Determines if two values are the same. + public static bool operator ==(HealthcareEntityCategory left, HealthcareEntityCategory right) => left.Equals(right); + /// Determines if two values are not the same. + public static bool operator !=(HealthcareEntityCategory left, HealthcareEntityCategory right) => !left.Equals(right); + /// Converts a string to a . + public static implicit operator HealthcareEntityCategory(string value) => new HealthcareEntityCategory(value); + + /// + [EditorBrowsable(EditorBrowsableState.Never)] + public override bool Equals(object obj) => obj is HealthcareEntityCategory other && Equals(other); + /// + public bool Equals(HealthcareEntityCategory other) => string.Equals(_value, other._value, StringComparison.InvariantCultureIgnoreCase); + + /// + [EditorBrowsable(EditorBrowsableState.Never)] + public override int GetHashCode() => _value?.GetHashCode() ?? 0; + /// + public override string ToString() => _value; + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntityInternal.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntityInternal.Serialization.cs index aae5a067b03a..59dd0b0f318f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntityInternal.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntityInternal.Serialization.cs @@ -20,7 +20,7 @@ internal static HealthcareEntityInternal DeserializeHealthcareEntityInternal(Jso Optional name = default; Optional> links = default; string text = default; - string category = default; + HealthcareEntityCategory category = default; Optional subcategory = default; int offset = default; int length = default; @@ -64,7 +64,7 @@ internal static HealthcareEntityInternal DeserializeHealthcareEntityInternal(Jso } if (property.NameEquals("category")) { - category = property.Value.GetString(); + category = new HealthcareEntityCategory(property.Value.GetString()); continue; } if (property.NameEquals("subcategory")) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntityInternal.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntityInternal.cs index a626d19aaf3a..c65ca76c82b7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntityInternal.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntityInternal.cs @@ -13,32 +13,28 @@ namespace Azure.AI.TextAnalytics.Models { /// The HealthcareEntity. - internal partial class HealthcareEntityInternal : Entity + internal partial class HealthcareEntityInternal : HealthcareEntityProperties { /// Initializes a new instance of HealthcareEntityInternal. /// Entity text as appears in the request. - /// Entity type. + /// Healthcare Entity Category. /// Start position for the entity text. Use of different 'stringIndexType' values can affect the offset returned. /// Length for the entity text. Use of different 'stringIndexType' values can affect the length returned. /// Confidence score between 0 and 1 of the extracted entity. - /// or is null. - internal HealthcareEntityInternal(string text, string category, int offset, int length, double confidenceScore) : base(text, category, offset, length, confidenceScore) + /// is null. + internal HealthcareEntityInternal(string text, HealthcareEntityCategory category, int offset, int length, double confidenceScore) : base(text, category, offset, length, confidenceScore) { if (text == null) { throw new ArgumentNullException(nameof(text)); } - if (category == null) - { - throw new ArgumentNullException(nameof(category)); - } Links = new ChangeTrackingList(); } /// Initializes a new instance of HealthcareEntityInternal. /// Entity text as appears in the request. - /// Entity type. + /// Healthcare Entity Category. /// (Optional) Entity sub type. /// Start position for the entity text. Use of different 'stringIndexType' values can affect the offset returned. /// Length for the entity text. Use of different 'stringIndexType' values can affect the length returned. @@ -46,7 +42,7 @@ internal HealthcareEntityInternal(string text, string category, int offset, int /// . /// Preferred name for the entity. Example: 'histologically' would have a 'name' of 'histologic'. /// Entity references in known data sources. - internal HealthcareEntityInternal(string text, string category, string subcategory, int offset, int length, double confidenceScore, HealthcareEntityAssertion assertion, string name, IReadOnlyList links) : base(text, category, subcategory, offset, length, confidenceScore) + internal HealthcareEntityInternal(string text, HealthcareEntityCategory category, string subcategory, int offset, int length, double confidenceScore, HealthcareEntityAssertion assertion, string name, IReadOnlyList links) : base(text, category, subcategory, offset, length, confidenceScore) { Assertion = assertion; Name = name; diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntityProperties.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntityProperties.Serialization.cs new file mode 100644 index 000000000000..23e7641252f3 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntityProperties.Serialization.cs @@ -0,0 +1,60 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.AI.TextAnalytics; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class HealthcareEntityProperties + { + internal static HealthcareEntityProperties DeserializeHealthcareEntityProperties(JsonElement element) + { + string text = default; + HealthcareEntityCategory category = default; + Optional subcategory = default; + int offset = default; + int length = default; + double confidenceScore = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("text")) + { + text = property.Value.GetString(); + continue; + } + if (property.NameEquals("category")) + { + category = new HealthcareEntityCategory(property.Value.GetString()); + continue; + } + if (property.NameEquals("subcategory")) + { + subcategory = property.Value.GetString(); + continue; + } + if (property.NameEquals("offset")) + { + offset = property.Value.GetInt32(); + continue; + } + if (property.NameEquals("length")) + { + length = property.Value.GetInt32(); + continue; + } + if (property.NameEquals("confidenceScore")) + { + confidenceScore = property.Value.GetDouble(); + continue; + } + } + return new HealthcareEntityProperties(text, category, subcategory.Value, offset, length, confidenceScore); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntityProperties.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntityProperties.cs new file mode 100644 index 000000000000..a7614c905373 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntityProperties.cs @@ -0,0 +1,67 @@ +// 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 HealthcareEntityProperties. + internal partial class HealthcareEntityProperties + { + /// Initializes a new instance of HealthcareEntityProperties. + /// Entity text as appears in the request. + /// Healthcare Entity Category. + /// Start position for the entity text. Use of different 'stringIndexType' values can affect the offset returned. + /// Length for the entity text. Use of different 'stringIndexType' values can affect the length returned. + /// Confidence score between 0 and 1 of the extracted entity. + /// is null. + internal HealthcareEntityProperties(string text, HealthcareEntityCategory category, int offset, int length, double confidenceScore) + { + if (text == null) + { + throw new ArgumentNullException(nameof(text)); + } + + Text = text; + Category = category; + Offset = offset; + Length = length; + ConfidenceScore = confidenceScore; + } + + /// Initializes a new instance of HealthcareEntityProperties. + /// Entity text as appears in the request. + /// Healthcare Entity Category. + /// (Optional) Entity sub type. + /// Start position for the entity text. Use of different 'stringIndexType' values can affect the offset returned. + /// Length for the entity text. Use of different 'stringIndexType' values can affect the length returned. + /// Confidence score between 0 and 1 of the extracted entity. + internal HealthcareEntityProperties(string text, HealthcareEntityCategory category, string subcategory, int offset, int length, double confidenceScore) + { + Text = text; + Category = category; + Subcategory = subcategory; + Offset = offset; + Length = length; + ConfidenceScore = confidenceScore; + } + + /// Entity text as appears in the request. + public string Text { get; } + /// Healthcare Entity Category. + public HealthcareEntityCategory Category { get; } + /// (Optional) Entity sub type. + public string Subcategory { get; } + /// Start position for the entity text. Use of different 'stringIndexType' values can affect the offset returned. + public int Offset { get; } + /// Length for the entity text. Use of different 'stringIndexType' values can affect the length returned. + public int Length { get; } + /// Confidence score between 0 and 1 of the extracted entity. + public double ConfidenceScore { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.Serialization.cs index e4a3f3b56ea3..c5b84ecd86d9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.Serialization.cs @@ -18,7 +18,7 @@ internal static KeyPhraseExtractionTasksItem DeserializeKeyPhraseExtractionTasks { Optional results = default; DateTimeOffset lastUpdateDateTime = default; - Optional name = default; + string taskName = default; TextAnalyticsOperationStatus status = default; foreach (var property in element.EnumerateObject()) { @@ -37,9 +37,9 @@ internal static KeyPhraseExtractionTasksItem DeserializeKeyPhraseExtractionTasks lastUpdateDateTime = property.Value.GetDateTimeOffset("O"); continue; } - if (property.NameEquals("name")) + if (property.NameEquals("taskName")) { - name = property.Value.GetString(); + taskName = property.Value.GetString(); continue; } if (property.NameEquals("status")) @@ -48,7 +48,7 @@ internal static KeyPhraseExtractionTasksItem DeserializeKeyPhraseExtractionTasks continue; } } - return new KeyPhraseExtractionTasksItem(lastUpdateDateTime, name.Value, status, results.Value); + return new KeyPhraseExtractionTasksItem(lastUpdateDateTime, taskName, status, results.Value); } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.cs index af6716ab9ff9..9c19a2389618 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.cs @@ -15,18 +15,30 @@ internal partial class KeyPhraseExtractionTasksItem : TaskState { /// Initializes a new instance of KeyPhraseExtractionTasksItem. /// . + /// . /// . - internal KeyPhraseExtractionTasksItem(DateTimeOffset lastUpdateDateTime, TextAnalyticsOperationStatus status) : base(lastUpdateDateTime, status) + /// is null. + internal KeyPhraseExtractionTasksItem(DateTimeOffset lastUpdateDateTime, string taskName, TextAnalyticsOperationStatus status) : base(lastUpdateDateTime, taskName, status) { + if (taskName == null) + { + throw new ArgumentNullException(nameof(taskName)); + } } /// Initializes a new instance of KeyPhraseExtractionTasksItem. /// . - /// . + /// . /// . /// . - internal KeyPhraseExtractionTasksItem(DateTimeOffset lastUpdateDateTime, string name, TextAnalyticsOperationStatus status, KeyPhraseResult results) : base(lastUpdateDateTime, name, status) + /// is null. + internal KeyPhraseExtractionTasksItem(DateTimeOffset lastUpdateDateTime, string taskName, TextAnalyticsOperationStatus status, KeyPhraseResult results) : base(lastUpdateDateTime, taskName, status) { + if (taskName == null) + { + throw new ArgumentNullException(nameof(taskName)); + } + Results = results; } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTask.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTask.Serialization.cs index 7404db43068e..3f5f75c5d98c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTask.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTask.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/KeyPhrasesTask.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTask.cs index 010f11ef9494..605ccc4b3adc 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTask.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTask.cs @@ -16,5 +16,6 @@ public KeyPhrasesTask() } public KeyPhrasesTaskParameters Parameters { get; set; } + public string TaskName { get; set; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTask.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTask.Serialization.cs index 6f2adbf4dc6d..784a618238e5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTask.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTask.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/PiiTask.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTask.cs index 0bb15ca2db21..3da129053b30 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTask.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTask.cs @@ -16,5 +16,6 @@ public PiiTask() } public PiiTaskParameters Parameters { get; set; } + public string TaskName { get; set; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParameters.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParameters.Serialization.cs index cee6699b78ff..7de1f22235a5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParameters.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParameters.Serialization.cs @@ -32,7 +32,7 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) } if (Optional.IsCollectionDefined(PiiCategories)) { - writer.WritePropertyName("pii-categories"); + writer.WritePropertyName("piiCategories"); writer.WriteStartArray(); foreach (var item in PiiCategories) { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParameters.cs index 3271e3150df2..6992fe74da5d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParameters.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParameters.cs @@ -23,8 +23,6 @@ public PiiTaskParameters() public PiiTaskParametersDomain? Domain { get; set; } public string ModelVersion { get; set; } public bool? LoggingOptOut { get; set; } - /// (Optional) describes the PII categories to return. - public IList PiiCategories { get; } public StringIndexType? StringIndexType { get; set; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/SentimentAnalysisTask.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/SentimentAnalysisTask.Serialization.cs index acf4253dadc2..0375f2a56cb2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/SentimentAnalysisTask.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/SentimentAnalysisTask.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/SentimentAnalysisTask.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/SentimentAnalysisTask.cs index b25237cf7bbd..8821b6739457 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/SentimentAnalysisTask.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/SentimentAnalysisTask.cs @@ -16,5 +16,6 @@ public SentimentAnalysisTask() } public SentimentAnalysisTaskParameters Parameters { get; set; } + public string TaskName { get; set; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/SentimentAnalysisTasksItem.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/SentimentAnalysisTasksItem.Serialization.cs index 465b144a70bf..b79b3ea65c8c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/SentimentAnalysisTasksItem.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/SentimentAnalysisTasksItem.Serialization.cs @@ -18,7 +18,7 @@ internal static SentimentAnalysisTasksItem DeserializeSentimentAnalysisTasksItem { Optional results = default; DateTimeOffset lastUpdateDateTime = default; - Optional name = default; + string taskName = default; TextAnalyticsOperationStatus status = default; foreach (var property in element.EnumerateObject()) { @@ -37,9 +37,9 @@ internal static SentimentAnalysisTasksItem DeserializeSentimentAnalysisTasksItem lastUpdateDateTime = property.Value.GetDateTimeOffset("O"); continue; } - if (property.NameEquals("name")) + if (property.NameEquals("taskName")) { - name = property.Value.GetString(); + taskName = property.Value.GetString(); continue; } if (property.NameEquals("status")) @@ -48,7 +48,7 @@ internal static SentimentAnalysisTasksItem DeserializeSentimentAnalysisTasksItem continue; } } - return new SentimentAnalysisTasksItem(lastUpdateDateTime, name.Value, status, results.Value); + return new SentimentAnalysisTasksItem(lastUpdateDateTime, taskName, status, results.Value); } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/SentimentAnalysisTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/SentimentAnalysisTasksItem.cs index c5afed10d5c1..5b65dddb592c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/SentimentAnalysisTasksItem.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/SentimentAnalysisTasksItem.cs @@ -15,18 +15,30 @@ internal partial class SentimentAnalysisTasksItem : TaskState { /// Initializes a new instance of SentimentAnalysisTasksItem. /// . + /// . /// . - internal SentimentAnalysisTasksItem(DateTimeOffset lastUpdateDateTime, TextAnalyticsOperationStatus status) : base(lastUpdateDateTime, status) + /// is null. + internal SentimentAnalysisTasksItem(DateTimeOffset lastUpdateDateTime, string taskName, TextAnalyticsOperationStatus status) : base(lastUpdateDateTime, taskName, status) { + if (taskName == null) + { + throw new ArgumentNullException(nameof(taskName)); + } } /// Initializes a new instance of SentimentAnalysisTasksItem. /// . - /// . + /// . /// . /// . - internal SentimentAnalysisTasksItem(DateTimeOffset lastUpdateDateTime, string name, TextAnalyticsOperationStatus status, SentimentResponse results) : base(lastUpdateDateTime, name, status) + /// is null. + internal SentimentAnalysisTasksItem(DateTimeOffset lastUpdateDateTime, string taskName, TextAnalyticsOperationStatus status, SentimentResponse results) : base(lastUpdateDateTime, taskName, status) { + if (taskName == null) + { + throw new ArgumentNullException(nameof(taskName)); + } + Results = results; } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.Serialization.cs index a1987a87b669..46fa464dcfa4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.Serialization.cs @@ -17,7 +17,7 @@ internal partial class TaskState internal static TaskState DeserializeTaskState(JsonElement element) { DateTimeOffset lastUpdateDateTime = default; - Optional name = default; + string taskName = default; TextAnalyticsOperationStatus status = default; foreach (var property in element.EnumerateObject()) { @@ -26,9 +26,9 @@ internal static TaskState DeserializeTaskState(JsonElement element) lastUpdateDateTime = property.Value.GetDateTimeOffset("O"); continue; } - if (property.NameEquals("name")) + if (property.NameEquals("taskName")) { - name = property.Value.GetString(); + taskName = property.Value.GetString(); continue; } if (property.NameEquals("status")) @@ -37,7 +37,7 @@ internal static TaskState DeserializeTaskState(JsonElement element) continue; } } - return new TaskState(lastUpdateDateTime, name.Value, status); + return new TaskState(lastUpdateDateTime, taskName, status); } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.cs index 702aa3340e72..4617f7b4877b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.cs @@ -15,26 +15,23 @@ internal partial class TaskState { /// Initializes a new instance of TaskState. /// . + /// . /// . - internal TaskState(DateTimeOffset lastUpdateDateTime, TextAnalyticsOperationStatus status) + /// is null. + internal TaskState(DateTimeOffset lastUpdateDateTime, string taskName, TextAnalyticsOperationStatus status) { - LastUpdateDateTime = lastUpdateDateTime; - Status = status; - } + if (taskName == null) + { + throw new ArgumentNullException(nameof(taskName)); + } - /// Initializes a new instance of TaskState. - /// . - /// . - /// . - internal TaskState(DateTimeOffset lastUpdateDateTime, string name, TextAnalyticsOperationStatus status) - { LastUpdateDateTime = lastUpdateDateTime; - Name = name; + TaskName = taskName; Status = status; } public DateTimeOffset LastUpdateDateTime { get; } - public string Name { get; } + public string TaskName { get; } public TextAnalyticsOperationStatus Status { get; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.Serialization.cs deleted file mode 100644 index 9d57695e2713..000000000000 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.Serialization.cs +++ /dev/null @@ -1,43 +0,0 @@ -// 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 TasksStateTasksDetails - { - internal static TasksStateTasksDetails DeserializeTasksStateTasksDetails(JsonElement element) - { - DateTimeOffset lastUpdateDateTime = default; - Optional name = default; - TextAnalyticsOperationStatus status = default; - foreach (var property in element.EnumerateObject()) - { - if (property.NameEquals("lastUpdateDateTime")) - { - lastUpdateDateTime = property.Value.GetDateTimeOffset("O"); - continue; - } - if (property.NameEquals("name")) - { - name = property.Value.GetString(); - continue; - } - if (property.NameEquals("status")) - { - status = new TextAnalyticsOperationStatus(property.Value.GetString()); - continue; - } - } - return new TasksStateTasksDetails(lastUpdateDateTime, name.Value, status); - } - } -} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.cs deleted file mode 100644 index 65f19e3aab11..000000000000 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.cs +++ /dev/null @@ -1,31 +0,0 @@ -// 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 TasksStateTasksDetails. - internal partial class TasksStateTasksDetails : TaskState - { - /// Initializes a new instance of TasksStateTasksDetails. - /// . - /// . - internal TasksStateTasksDetails(DateTimeOffset lastUpdateDateTime, TextAnalyticsOperationStatus status) : base(lastUpdateDateTime, status) - { - } - - /// Initializes a new instance of TasksStateTasksDetails. - /// . - /// . - /// . - internal TasksStateTasksDetails(DateTimeOffset lastUpdateDateTime, string name, TextAnalyticsOperationStatus status) : base(lastUpdateDateTime, name, status) - { - } - } -} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TextAnalyticsOperationStatus.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TextAnalyticsOperationStatus.cs index dc7ac62596fb..563dd255565d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TextAnalyticsOperationStatus.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TextAnalyticsOperationStatus.cs @@ -29,7 +29,6 @@ public TextAnalyticsOperationStatus(string value) private const string RejectedValue = "rejected"; private const string CancelledValue = "cancelled"; private const string CancellingValue = "cancelling"; - private const string PartiallyCompletedValue = "partiallyCompleted"; /// notStarted. public static TextAnalyticsOperationStatus NotStarted { get; } = new TextAnalyticsOperationStatus(NotStartedValue); @@ -45,8 +44,6 @@ public TextAnalyticsOperationStatus(string value) public static TextAnalyticsOperationStatus Cancelled { get; } = new TextAnalyticsOperationStatus(CancelledValue); /// cancelling. public static TextAnalyticsOperationStatus Cancelling { get; } = new TextAnalyticsOperationStatus(CancellingValue); - /// partiallyCompleted. - public static TextAnalyticsOperationStatus PartiallyCompleted { get; } = new TextAnalyticsOperationStatus(PartiallyCompletedValue); /// Determines if two values are the same. public static bool operator ==(TextAnalyticsOperationStatus left, TextAnalyticsOperationStatus right) => left.Equals(right); /// Determines if two values are not the same. diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsModelFactory.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsModelFactory.cs index 43d7f97e0965..8b456f67b729 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsModelFactory.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsModelFactory.cs @@ -14,32 +14,6 @@ namespace Azure.AI.TextAnalytics public static partial class TextAnalyticsModelFactory { - /// Initializes new instance of LinkedEntity structure. - /// Entity Linking formal name. - /// List of instances this entity appears in the text. - /// Language used in the data source. - /// Unique identifier of the recognized entity from the data source. - /// URL for the entity's page from the data source. - /// Data source used to extract entity linking, such as Wiki/Bing etc. - /// Bing Entity Search API unique identifier of the recognized entity. - /// A new instance for mocking. - public static LinkedEntity LinkedEntity(string name = default, IEnumerable matches = default, string language = default, string dataSourceEntityId = default, Uri url = default, string dataSource = default, string bingEntitySearchApiId = default) - { - matches ??= new List(); - return new LinkedEntity(name, matches, language, dataSourceEntityId, url, dataSource, bingEntitySearchApiId); - } - - /// Initializes new instance of LinkedEntityMatch structure. - /// If a well known item is recognized, a decimal number denoting the confidence level between 0 and 1 will be returned. - /// Entity text as appears in the request. - /// Start position for the entity match text. - /// Length for the entity match text. - /// A new instance for mocking. - public static LinkedEntityMatch LinkedEntityMatch(double confidenceScore = default, string text = default, int offset = default, int length = default) - { - return new LinkedEntityMatch(confidenceScore, text, offset, length); - } - /// Initializes new instance of HealthcareEntityAssertion class. /// Describes any conditionality on the entity. /// Describes the entities certainty and polarity. diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsRestClient.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsRestClient.cs index 985a32310e9c..cbcb2e4f27a3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsRestClient.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsRestClient.cs @@ -28,7 +28,7 @@ internal partial class TextAnalyticsRestClient /// The handler for diagnostic messaging in the client. /// The HTTP pipeline for sending and receiving REST requests and responses. /// Supported Cognitive Services endpoints (protocol and hostname, for example: https://westus.api.cognitive.microsoft.com). - /// Text Analytics API version (for example: v3.0). + /// Text Analytics API version (for example, v3.0). /// or is null. public TextAnalyticsRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, string endpoint, string apiVersion = "v3.1") { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareEntity.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareEntity.cs index 8a4fa8f98bca..a0d513edd4ed 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareEntity.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareEntity.cs @@ -34,7 +34,7 @@ internal HealthcareEntity(HealthcareEntityInternal entity) /// described at /// . /// - public string Category { get; } + public HealthcareEntityCategory Category { get; } /// /// Gets the sub category of the entity inferred by the Text Analytics service's diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareEntityCategory.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareEntityCategory.cs new file mode 100644 index 000000000000..2fcbf3cb8467 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareEntityCategory.cs @@ -0,0 +1,15 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + /// + /// Gets the healthcare entity category inferred by the Text Analytics service's named entity recognition model. + /// + [CodeGenModel("HealthcareEntityCategory")] + public partial struct HealthcareEntityCategory + { + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Internal/PiiTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Internal/PiiTaskParameters.cs index 18b75576c216..3844f4da3ff8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Internal/PiiTaskParameters.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Internal/PiiTaskParameters.cs @@ -1,6 +1,7 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. +using System.Collections.Generic; using Azure.Core; namespace Azure.AI.TextAnalytics.Models @@ -9,5 +10,9 @@ namespace Azure.AI.TextAnalytics.Models /// PiiTaskParameters class. /// [CodeGenModel("PiiTaskParameters")] - internal partial class PiiTaskParameters { } + internal partial class PiiTaskParameters + { + /// (Optional) describes the PII categories to return. + public IList PiiCategories { get; set; } + } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/LinkedEntity.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/LinkedEntity.cs index 931d93a3942d..5c0688f33d2d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/LinkedEntity.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/LinkedEntity.cs @@ -64,7 +64,7 @@ internal LinkedEntity(string name, IEnumerable matches, strin /// Use in conjunction with the Bing Entity Search API to fetch additional relevant information. /// /// - /// This property only has value for and up. + /// This property only has value for and up. /// [CodeGenMember("BingId")] public string BingEntitySearchApiId { get; } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeEntitiesAction.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeEntitiesAction.cs index dddfbbce045e..a1ba8504cecd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeEntitiesAction.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeEntitiesAction.cs @@ -20,6 +20,17 @@ public RecognizeEntitiesAction() { } + /// + /// Initializes a new instance of the + /// class based on the values of a . + /// It sets the and properties. + /// + public RecognizeEntitiesAction(TextAnalyticsRequestOptions options) + { + ModelVersion = options.ModelVersion; + DisableServiceLogs = options.DisableServiceLogs; + } + /// /// Gets or sets a value that, if set, indicates the version of the text /// analytics model that will be used to generate the result. For supported @@ -34,8 +45,13 @@ public RecognizeEntitiesAction() /// Setting this property to true, disables input logging and may limit our ability to investigate issues that occur. /// /// - /// This property only applies for and up. + /// 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 7debcd9f4a4f..cecfdb46e669 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeEntitiesActionResult.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeEntitiesActionResult.cs @@ -13,29 +13,20 @@ public class RecognizeEntitiesActionResult : TextAnalyticsActionResult { private readonly RecognizeEntitiesResultCollection _documentsResults; - internal RecognizeEntitiesActionResult(RecognizeEntitiesResultCollection result, DateTimeOffset completedOn, TextAnalyticsErrorInternal error) - : base(completedOn, error) - { - _documentsResults = result; - } - /// - /// Intended for mocking purposes only. + /// Successful action. /// - internal RecognizeEntitiesActionResult( - RecognizeEntitiesResultCollection result, - DateTimeOffset completedOn) : base(completedOn) + internal RecognizeEntitiesActionResult(RecognizeEntitiesResultCollection result, string actionName, DateTimeOffset completedOn) + : base(completedOn, actionName) { _documentsResults = result; } /// - /// Intended for mocking purposes only. + /// Action with an error. /// - internal RecognizeEntitiesActionResult( - TextAnalyticsErrorInternal error) : base(error) - { - } + internal RecognizeEntitiesActionResult(string actionName, DateTimeOffset completedOn, TextAnalyticsErrorInternal error) + : base(completedOn, actionName, 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 8179de265c10..2c8829aead95 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeLinkedEntitiesAction.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeLinkedEntitiesAction.cs @@ -20,6 +20,17 @@ public RecognizeLinkedEntitiesAction() { } + /// + /// Initializes a new instance of the + /// class based on the values of a . + /// It sets the and properties. + /// + public RecognizeLinkedEntitiesAction(TextAnalyticsRequestOptions options) + { + ModelVersion = options.ModelVersion; + DisableServiceLogs = options.DisableServiceLogs; + } + /// /// Gets or sets a value that, if set, indicates the version of the text /// analytics model that will be used to generate the result. For supported @@ -34,8 +45,13 @@ public RecognizeLinkedEntitiesAction() /// Setting this property to true, disables input logging and may limit our ability to investigate issues that occur. /// /// - /// This property only applies for and up. + /// 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 e8fbd4616bf9..56ed64c2c45d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeLinkedEntitiesActionResult.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeLinkedEntitiesActionResult.cs @@ -13,29 +13,20 @@ public class RecognizeLinkedEntitiesActionResult : TextAnalyticsActionResult { private readonly RecognizeLinkedEntitiesResultCollection _documentsResults; - internal RecognizeLinkedEntitiesActionResult(RecognizeLinkedEntitiesResultCollection result, DateTimeOffset completedOn, TextAnalyticsErrorInternal error) - : base(completedOn, error) - { - _documentsResults = result; - } - /// - /// Intended for mocking purposes only. + /// Successful action. /// - internal RecognizeLinkedEntitiesActionResult( - RecognizeLinkedEntitiesResultCollection result, - DateTimeOffset completedOn) : base(completedOn) + internal RecognizeLinkedEntitiesActionResult(RecognizeLinkedEntitiesResultCollection result, string actionName, DateTimeOffset completedOn) + : base(completedOn, actionName) { _documentsResults = result; } /// - /// Intended for mocking purposes only. + /// Action with an error. /// - internal RecognizeLinkedEntitiesActionResult( - TextAnalyticsErrorInternal error) : base(error) - { - } + internal RecognizeLinkedEntitiesActionResult(string actionName, DateTimeOffset completedOn, TextAnalyticsErrorInternal error) + : base(completedOn, actionName, 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 909808d16cef..3b683785c06e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizePiiEntitiesAction.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizePiiEntitiesAction.cs @@ -24,6 +24,23 @@ public RecognizePiiEntitiesAction() { } + /// + /// Initializes a new instance of the + /// class based on the values of a . + /// It sets the , , + /// , and properties. + /// + public RecognizePiiEntitiesAction(RecognizePiiEntitiesOptions options) + { + ModelVersion = options.ModelVersion; + DisableServiceLogs = options.DisableServiceLogs; + DomainFilter = options.DomainFilter; + if (options.CategoriesFilter.Count > 0) + { + CategoriesFilter = new List(options.CategoriesFilter); + } + } + /// /// Gets or sets a value that, if set, indicates the version of the text /// analytics model that will be used to generate the result. For supported @@ -37,7 +54,7 @@ public RecognizePiiEntitiesAction() /// Setting this property to 'false', enables logging your input text for 48 hours, solely to allow for troubleshooting issues. /// /// - /// This property only applies for and up. + /// This property only applies for and up. /// public bool? DisableServiceLogs { get; set; } @@ -51,5 +68,10 @@ public RecognizePiiEntitiesAction() /// 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 168c8b9368d0..0aacaafaf78c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizePiiEntitiesActionResult.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizePiiEntitiesActionResult.cs @@ -13,12 +13,21 @@ public class RecognizePiiEntitiesActionResult : TextAnalyticsActionResult { private readonly RecognizePiiEntitiesResultCollection _documentsResults; - internal RecognizePiiEntitiesActionResult(RecognizePiiEntitiesResultCollection result, DateTimeOffset completedOn, TextAnalyticsErrorInternal error) - : base(completedOn, error) + /// + /// Successful action. + /// + internal RecognizePiiEntitiesActionResult(RecognizePiiEntitiesResultCollection result, string actionName, DateTimeOffset completedOn) + : base(completedOn, actionName) { _documentsResults = result; } + /// + /// Action with an error. + /// + internal RecognizePiiEntitiesActionResult(string actionName, DateTimeOffset completedOn, TextAnalyticsErrorInternal error) + : base(completedOn, actionName, error) { } + /// /// Gets the result of the execution of a per each input document. /// diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsActionResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsActionResult.cs index e60f548725c4..97a5043441cb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsActionResult.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsActionResult.cs @@ -11,32 +11,28 @@ namespace Azure.AI.TextAnalytics /// public class TextAnalyticsActionResult { - internal TextAnalyticsActionResult (DateTimeOffset completedOn, TextAnalyticsErrorInternal error) + internal TextAnalyticsActionResult (DateTimeOffset completedOn, string actionName, TextAnalyticsErrorInternal error) { CompletedOn = completedOn; + ActionName = actionName; Error = error != null ? Transforms.ConvertToError(error) : default; } - /// - /// Intended for mocking purposes only. - /// - internal TextAnalyticsActionResult(DateTimeOffset completedOn) + internal TextAnalyticsActionResult(DateTimeOffset completedOn, string actionName) { CompletedOn = completedOn; + ActionName = actionName; } /// - /// Intended for mocking purposes only. + /// Indicates the time at which the action was last updated on. /// - internal TextAnalyticsActionResult(TextAnalyticsErrorInternal error) - { - Error = Transforms.ConvertToError(error); - } + public DateTimeOffset CompletedOn { get; } /// - /// Indicates the time at which the action was last updated on. + /// Gets the name for this action. /// - public DateTimeOffset CompletedOn { get; } + public string ActionName { get; } /// /// Determines the TextAnalyticsError object for an action result. diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsActions.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsActions.cs index c0e95a17296f..aecf5f23621e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsActions.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsActions.cs @@ -8,6 +8,15 @@ namespace Azure.AI.TextAnalytics /// Determines the set of actions that will get executed on the input documents. public class TextAnalyticsActions { + /// + /// Initializes a new instance of the + /// class which determines the set of actions that will get executed on the input documents. + /// For example, execute extract key phrases, recognize entities, and more. + /// + public TextAnalyticsActions() + { + } + /// /// Optional display name for the operation. /// diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs index 7794ead1f39d..f92df81e1852 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs @@ -714,7 +714,7 @@ private Response RecognizeEntitiesBatch(Multi /// . /// /// - /// Method is only available for and up. + /// Method is only available for and up. /// /// The document to analyze. /// The language that the document is written in. @@ -784,7 +784,7 @@ public virtual async Task> RecognizePiiEntitiesAsy /// . /// /// - /// Method is only available for and up. + /// Method is only available for and up. /// /// The document to analyze. /// The language that the document is written in. @@ -854,7 +854,7 @@ public virtual Response RecognizePiiEntities(string documen /// . /// /// - /// Method is only available for and up. + /// Method is only available for and up. /// /// The documents to analyze. /// The language that the document is written in. @@ -893,7 +893,7 @@ public virtual async Task> Recogn /// . /// /// - /// Method is only available for and up. + /// Method is only available for and up. /// /// The documents to analyze. /// The language that the document is written in. @@ -932,7 +932,7 @@ public virtual Response RecognizePiiEntiti /// . /// /// - /// Method is only available for and up. + /// Method is only available for and up. /// /// The documents to analyze. /// The additional configurable that may be passed when @@ -966,7 +966,7 @@ public virtual async Task> Recogn /// . /// /// - /// Method is only available for and up. + /// Method is only available for and up. /// /// The documents to analyze. /// The additional configurable that may be passed when @@ -2126,7 +2126,7 @@ private Response RecognizeLinkedEntitie /// For document length limits, maximum batch size, and supported text encoding, see /// . /// - /// Method is only available for and up. + /// Method is only available for and up. /// /// Note: In order to use this functionality, request to access public preview is required. /// Azure Active Directory (AAD) is not currently supported. For more information see @@ -2159,7 +2159,7 @@ public virtual async Task StartAnalyzeHealth /// For document length limits, maximum batch size, and supported text encoding, see /// . /// - /// Method is only available for and up. + /// Method is only available for and up. /// /// Note: In order to use this functionality, request to access public preview is required. /// Azure Active Directory (AAD) is not currently supported. For more information see @@ -2199,7 +2199,7 @@ public virtual AnalyzeHealthcareEntitiesOperation StartAnalyzeHealthcareEntities /// For document length limits, maximum batch size, and supported text encoding, see /// . /// - /// Method is only available for and up. + /// Method is only available for and up. /// /// Note: In order to use this functionality, request to access public preview is required. /// Azure Active Directory (AAD) is not currently supported. For more information see @@ -2232,7 +2232,7 @@ public virtual AnalyzeHealthcareEntitiesOperation StartAnalyzeHealthcareEntities /// For document length limits, maximum batch size, and supported text encoding, see /// . /// - /// Method is only available for and up. + /// Method is only available for and up. /// /// Note: In order to use this functionality, request to access public preview is required. /// Azure Active Directory (AAD) is not currently supported. For more information see @@ -2324,7 +2324,7 @@ private async Task StartAnalyzeHealthcareEnt /// . /// /// - /// Method is only available for and up. + /// Method is only available for and up. /// /// The list of documents to analyze. /// The language that the document is written in. @@ -2352,7 +2352,7 @@ public virtual async Task StartAnalyzeActionsAsync(IEnu /// . /// /// - /// Method is only available for and up. + /// Method is only available for and up. /// /// The list of documents to analyze. /// The different actions to pass as arguments. @@ -2380,7 +2380,7 @@ public virtual AnalyzeActionsOperation StartAnalyzeActions(IEnumerable d /// . /// /// - /// Method is only available for and up. + /// Method is only available for and up. /// /// The list of documents to analyze. /// The different actions to pass as arguments. @@ -2407,7 +2407,7 @@ public virtual AnalyzeActionsOperation StartAnalyzeActions(IEnumerable. /// /// - /// Method is only available for and up. + /// Method is only available for and up. /// /// The list of documents to analyze. /// The different actions to pass as arguments. diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClientOptions.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClientOptions.cs index e6d8ce61429e..91d2028941d9 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_1_Preview_5; + internal const ServiceVersion LatestVersion = ServiceVersion.V3_1; /// /// The versions of the Text Analytics service supported by this client library. @@ -30,9 +30,9 @@ public enum ServiceVersion V3_0 = 1, /// - /// Version 3.1-preview.5 + /// Version 3.1 /// - V3_1_Preview_5 = 2, + V3_1 = 2, #pragma warning restore CA1707 // Identifiers should not contain underscores } @@ -74,7 +74,7 @@ internal static string GetVersionString(ServiceVersion version) return version switch { ServiceVersion.V3_0 => "v3.0", - ServiceVersion.V3_1_Preview_5 => "v3.1-preview.5", + ServiceVersion.V3_1 => "v3.1", _ => 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 bff035dd9ced..03c0bd96b43f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsModelFactory.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsModelFactory.cs @@ -557,6 +557,32 @@ public static RecognizeLinkedEntitiesResultCollection RecognizeLinkedEntitiesRes return new RecognizeLinkedEntitiesResultCollection(list.ToList(), statistics, modelVersion); } + /// Initializes new instance of LinkedEntity structure. + /// Entity Linking formal name. + /// List of instances this entity appears in the text. + /// Language used in the data source. + /// Unique identifier of the recognized entity from the data source. + /// URL for the entity's page from the data source. + /// Data source used to extract entity linking, such as Wiki/Bing etc. + /// Bing Entity Search API unique identifier of the recognized entity. + /// A new instance for mocking. + internal static LinkedEntity LinkedEntity(string name = default, IEnumerable matches = default, string language = default, string dataSourceEntityId = default, Uri url = default, string dataSource = default, string bingEntitySearchApiId = default) + { + matches ??= new List(); + return new LinkedEntity(name, matches, language, dataSourceEntityId, url, dataSource, bingEntitySearchApiId); + } + + /// Initializes new instance of LinkedEntityMatch structure. + /// If a well known item is recognized, a decimal number denoting the confidence level between 0 and 1 will be returned. + /// Entity text as appears in the request. + /// Start position for the entity match text. + /// Length for the entity match text. + /// A new instance for mocking. + internal static LinkedEntityMatch LinkedEntityMatch(double confidenceScore = default, string text = default, int offset = default, int length = default) + { + return new LinkedEntityMatch(confidenceScore, text, offset, length); + } + #endregion Linked Entities #region Action Result Models @@ -566,7 +592,7 @@ public static RecognizeLinkedEntitiesResultCollection RecognizeLinkedEntitiesRes /// /// 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. @@ -589,128 +615,160 @@ public static AnalyzeActionsResult AnalyzeActionsResult( /// 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. /// 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(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. 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. /// 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(new TextAnalyticsErrorInternal(code, message)); - } - - /// - /// Initializes a new instance of for mocking purposes. - /// - /// Sets the property. - /// A new instance of for mocking purposes. - public static TextAnalyticsActionResult TextAnalyticsActionResult( - DateTimeOffset completedOn) - { - return new TextAnalyticsActionResult(completedOn); - } - - /// - /// Initializes a new instance of for mocking purposes. - /// - /// Sets the property. - /// Sets the property. - /// A new instance of for mocking purposes. - public static TextAnalyticsActionResult TextAnalyticsActionResult( - string code, - string message) - { - return new TextAnalyticsActionResult(new TextAnalyticsErrorInternal(code, message)); + return new AnalyzeSentimentActionResult(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. 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. /// 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(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. public static RecognizeEntitiesActionResult RecognizeEntitiesActionResult( RecognizeEntitiesResultCollection result, + string actionName, DateTimeOffset completedOn) { - return new RecognizeEntitiesActionResult(result, completedOn); + return new RecognizeEntitiesActionResult(result, actionName, 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(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. + 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. + /// 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 RecognizeEntitiesActionResult(new TextAnalyticsErrorInternal(code, message)); + return new RecognizePiiEntitiesActionResult(actionName, completedOn, new TextAnalyticsErrorInternal(code, message)); } #endregion Action Result Models diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsOperationStatus.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsOperationStatus.cs index 3b5a23923e49..3ecbf580fea7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsOperationStatus.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsOperationStatus.cs @@ -11,10 +11,5 @@ namespace Azure.AI.TextAnalytics [CodeGenModel("State")] public partial struct TextAnalyticsOperationStatus { - [CodeGenMember("PartiallyCompletedValue")] - private const string PartiallySucceededValue = "partiallySucceeded"; - - /// partiallyCompleted. - public static TextAnalyticsOperationStatus PartiallySucceeded { get; } = new TextAnalyticsOperationStatus(PartiallySucceededValue); } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsRequestOptions.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsRequestOptions.cs index 78138c710588..56aa2a3d50dd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsRequestOptions.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsRequestOptions.cs @@ -48,7 +48,7 @@ internal TextAnalyticsRequestOptions(bool includeStatistics, string modelVersion /// Setting this property to true, disables input logging and may limit our ability to investigate issues that occur. /// /// - /// This property only applies for and up. + /// This property only applies for and up. /// public bool? DisableServiceLogs { get; set; } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs index 405f456c29f5..55a249e234ea 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs @@ -322,16 +322,23 @@ private static int ParseHealthcareEntityIndex(string reference) internal static PiiTask ConvertToPiiTask(RecognizePiiEntitiesAction action) { + var parameters = new PiiTaskParameters() + { + Domain = action.DomainFilter.GetString() ?? (PiiTaskParametersDomain?)null, + ModelVersion = action.ModelVersion, + StringIndexType = Constants.DefaultStringIndexType, + LoggingOptOut = action.DisableServiceLogs + }; + + if (action.CategoriesFilter.Count > 0) + { + parameters.PiiCategories = action.CategoriesFilter; + } + return new PiiTask() { - Parameters = new PiiTaskParameters() - { - Domain = action.DomainFilter.GetString() ?? (PiiTaskParametersDomain?)null, - ModelVersion = action.ModelVersion, - StringIndexType = Constants.DefaultStringIndexType, - LoggingOptOut = action.DisableServiceLogs - // Categories are not enabled because of https://github.com/Azure/azure-sdk-for-net/issues/19237 - } + Parameters = parameters, + TaskName = action.ActionName }; } @@ -345,6 +352,8 @@ internal static EntityLinkingTask ConvertToLinkedEntitiesTask(RecognizeLinkedEnt StringIndexType = Constants.DefaultStringIndexType, LoggingOptOut = action.DisableServiceLogs } + , + TaskName = action.ActionName }; } @@ -357,7 +366,8 @@ internal static EntitiesTask ConvertToEntitiesTask(RecognizeEntitiesAction actio ModelVersion = action.ModelVersion, StringIndexType = Constants.DefaultStringIndexType, LoggingOptOut = action.DisableServiceLogs - } + }, + TaskName = action.ActionName }; } @@ -369,7 +379,8 @@ internal static KeyPhrasesTask ConvertToKeyPhrasesTask(ExtractKeyPhrasesAction a { ModelVersion = action.ModelVersion, LoggingOptOut = action.DisableServiceLogs - } + }, + TaskName = action.ActionName }; } @@ -383,7 +394,8 @@ internal static SentimentAnalysisTask ConvertToSentimentAnalysisTask(AnalyzeSent StringIndexType = Constants.DefaultStringIndexType, LoggingOptOut = action.DisableServiceLogs, OpinionMining = action.IncludeOpinionMining - } + }, + TaskName = action.ActionName }; } @@ -482,7 +494,7 @@ internal static AnalyzeActionsResult ConvertToAnalyzeActionsResult(AnalyzeJobSta { string[] targetPair = parseActionErrorTarget(error.Target); if (targetPair == null) - throw new InvalidOperationException("Invalid action/id error"); + throw new InvalidOperationException($"Invalid action/id error. \n Additional information: Error code: {error.Code} Error message: {error.Message}"); string taskName = targetPair[0]; int taskIndex = int.Parse(targetPair[1], CultureInfo.InvariantCulture); @@ -509,7 +521,7 @@ internal static AnalyzeActionsResult ConvertToAnalyzeActionsResult(AnalyzeJobSta } else { - throw new InvalidOperationException($"Invalid task name in target reference - {taskName}"); + throw new InvalidOperationException($"Invalid task name in target reference - {taskName}. \n Additional information: Error code: {error.Code} Error message: {error.Message}"); } } } @@ -532,11 +544,11 @@ private static IReadOnlyCollection ConvertToAnalyz if (taskError != null) { - collection.Add(new AnalyzeSentimentActionResult(null, task.LastUpdateDateTime, taskError)); + collection.Add(new AnalyzeSentimentActionResult(task.TaskName, task.LastUpdateDateTime, taskError)); } else { - collection.Add(new AnalyzeSentimentActionResult(ConvertToAnalyzeSentimentResultCollection(task.Results, idToIndexMap), task.LastUpdateDateTime, null)); + collection.Add(new AnalyzeSentimentActionResult(ConvertToAnalyzeSentimentResultCollection(task.Results, idToIndexMap), task.TaskName, task.LastUpdateDateTime)); } index++; } @@ -554,11 +566,11 @@ private static IReadOnlyCollection ConvertT if (taskError != null) { - collection.Add(new RecognizeLinkedEntitiesActionResult(null, task.LastUpdateDateTime, taskError)); + collection.Add(new RecognizeLinkedEntitiesActionResult(task.TaskName, task.LastUpdateDateTime, taskError)); } else { - collection.Add(new RecognizeLinkedEntitiesActionResult(ConvertToRecognizeLinkedEntitiesResultCollection(task.Results, idToIndexMap), task.LastUpdateDateTime, null)); + collection.Add(new RecognizeLinkedEntitiesActionResult(ConvertToRecognizeLinkedEntitiesResultCollection(task.Results, idToIndexMap), task.TaskName, task.LastUpdateDateTime)); } index++; } @@ -576,11 +588,11 @@ private static IReadOnlyCollection ConvertToExtra if (taskError != null) { - collection.Add(new ExtractKeyPhrasesActionResult(null, task.LastUpdateDateTime, taskError)); + collection.Add(new ExtractKeyPhrasesActionResult(task.TaskName, task.LastUpdateDateTime, taskError)); } else { - collection.Add(new ExtractKeyPhrasesActionResult(ConvertToExtractKeyPhrasesResultCollection(task.Results, idToIndexMap), task.LastUpdateDateTime, null)); + collection.Add(new ExtractKeyPhrasesActionResult(ConvertToExtractKeyPhrasesResultCollection(task.Results, idToIndexMap), task.TaskName, task.LastUpdateDateTime)); } index++; } @@ -598,11 +610,11 @@ private static IReadOnlyCollection ConvertToRe if (taskError != null) { - collection.Add(new RecognizePiiEntitiesActionResult(null, task.LastUpdateDateTime, taskError)); + collection.Add(new RecognizePiiEntitiesActionResult(task.TaskName, task.LastUpdateDateTime, taskError)); } else { - collection.Add(new RecognizePiiEntitiesActionResult(ConvertToRecognizePiiEntitiesResultCollection(task.Results, idToIndexMap), task.LastUpdateDateTime, taskError)); + collection.Add(new RecognizePiiEntitiesActionResult(ConvertToRecognizePiiEntitiesResultCollection(task.Results, idToIndexMap), task.TaskName, task.LastUpdateDateTime)); } index++; } @@ -622,11 +634,11 @@ private static IReadOnlyCollection ConvertToRecog if (taskError != null) { - collection.Add(new RecognizeEntitiesActionResult(null, task.LastUpdateDateTime, taskError)); + collection.Add(new RecognizeEntitiesActionResult(task.TaskName, task.LastUpdateDateTime, taskError)); } else { - collection.Add(new RecognizeEntitiesActionResult(ConvertToRecognizeEntitiesResultCollection(task.Results, idToIndexMap), task.LastUpdateDateTime, taskError)); + collection.Add(new RecognizeEntitiesActionResult(ConvertToRecognizeEntitiesResultCollection(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 9e98fd5d5393..368582beaac1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/autorest.md +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/autorest.md @@ -6,9 +6,9 @@ Run `dotnet build /t:GenerateCode` to generate code. > see https://aka.ms/autorest ``` yaml -tag: release_3_1_preview.5 +tag: release_3_1 require: - - https://github.com/Azure/azure-rest-api-specs/blob/5e1ad2fb49b88b1a17a941228f5238aba74992a6/specification/cognitiveservices/data-plane/TextAnalytics/readme.md + - https://github.com/Azure/azure-rest-api-specs/blob/9820e5b189076cb9b329b6968a8d2fc405eef2f6/specification/cognitiveservices/data-plane/TextAnalytics/readme.md ``` ### Make generated models internal by default @@ -21,29 +21,6 @@ directive: $["x-accessibility"] = "internal" ``` -### Make the API version parameterized so we generate a multi-versioned API - -This should be fixed in the swagger, but we're working around it locally for now. -``` yaml -directive: -- from: swagger-document - where: $["x-ms-parameterized-host"] - transform: > - $.hostTemplate = "{Endpoint}/text/analytics/{apiVersion}"; - $.parameters.push({ - "name": "apiVersion", - "description": "Text Analytics API version (for example: v3.0).", - "x-ms-parameter-location": "client", - "required": true, - "type": "string", - "enum": [ - "v3.1" - ], - "in": "path", - "x-ms-skip-url-encoding": true - }); -``` - ### Add nullable annotations This is to guarantee that we don't introduce breaking changes now that we autogerate the code. ``` yaml diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationMockTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationMockTests.cs index eb5846507cbe..0fb10399e2f3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationMockTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationMockTests.cs @@ -36,6 +36,8 @@ private TextAnalyticsClient CreateTestClient(HttpPipelineTransport transport) return client; } + #region Key phrases + [Test] public async Task AnalyzeOperationKeyPhrasesWithDisableServiceLogs() { @@ -69,6 +71,73 @@ public async Task AnalyzeOperationKeyPhrasesWithDisableServiceLogs() Assert.AreEqual(expectedContent, logging); } + [Test] + public async Task AnalyzeOperationKeyPhrasesFromRequestOptions() + { + var mockResponse = new MockResponse(202); + mockResponse.AddHeader(new HttpHeader("Operation-Location", "something/jobs/2a96a91f-7edf-4931-a880-3fdee1d56f15")); + + var mockTransport = new MockTransport(new[] { mockResponse, mockResponse }); + var client = CreateTestClient(mockTransport); + + var documents = new List + { + "Elon Musk is the CEO of SpaceX and Tesla." + }; + + var options = new TextAnalyticsRequestOptions(); + + var actions = new ExtractKeyPhrasesAction(options); + + TextAnalyticsActions batchActions = new() + { + ExtractKeyPhrasesActions = new List() { actions }, + }; + + await client.StartAnalyzeActionsAsync(documents, batchActions); + + var contentString = GetString(mockTransport.Requests.Single().Content); + ValidateRequestOptions(contentString); + } + + [Test] + public async Task AnalyzeOperationKeyPhrasesFromRequestOptionsFull() + { + var mockResponse = new MockResponse(202); + mockResponse.AddHeader(new HttpHeader("Operation-Location", "something/jobs/2a96a91f-7edf-4931-a880-3fdee1d56f15")); + + var mockTransport = new MockTransport(new[] { mockResponse, mockResponse }); + var client = CreateTestClient(mockTransport); + + var documents = new List + { + "Elon Musk is the CEO of SpaceX and Tesla." + }; + + var options = new TextAnalyticsRequestOptions() + { + ModelVersion = "latest", + DisableServiceLogs = true, + IncludeStatistics = false + }; + + var actions = new ExtractKeyPhrasesAction(options); + + TextAnalyticsActions batchActions = new() + { + ExtractKeyPhrasesActions = new List() { actions }, + }; + + await client.StartAnalyzeActionsAsync(documents, batchActions); + + var contentString = GetString(mockTransport.Requests.Single().Content); + ValidateRequestOptions(contentString, true); + } + + #endregion Key phrases + + #region entities + [Test] public async Task AnalyzeOperationRecognizeEntitiesWithDisableServiceLogs() { @@ -102,6 +171,73 @@ public async Task AnalyzeOperationRecognizeEntitiesWithDisableServiceLogs() Assert.AreEqual(expectedContent, logging); } + [Test] + public async Task AnalyzeOperationRecognizeEntitiesWithRequestOptions() + { + var mockResponse = new MockResponse(202); + mockResponse.AddHeader(new HttpHeader("Operation-Location", "something/jobs/2a96a91f-7edf-4931-a880-3fdee1d56f15")); + + var mockTransport = new MockTransport(new[] { mockResponse, mockResponse }); + var client = CreateTestClient(mockTransport); + + var documents = new List + { + "Elon Musk is the CEO of SpaceX and Tesla." + }; + + var options = new TextAnalyticsRequestOptions(); + + var actions = new RecognizeEntitiesAction(options); + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + RecognizeEntitiesActions = new List() { actions }, + }; + + await client.StartAnalyzeActionsAsync(documents, batchActions); + + var contentString = GetString(mockTransport.Requests.Single().Content); + ValidateRequestOptions(contentString); + } + + [Test] + public async Task AnalyzeOperationRecognizeEntitiesWithRequestOptionsFull() + { + var mockResponse = new MockResponse(202); + mockResponse.AddHeader(new HttpHeader("Operation-Location", "something/jobs/2a96a91f-7edf-4931-a880-3fdee1d56f15")); + + var mockTransport = new MockTransport(new[] { mockResponse, mockResponse }); + var client = CreateTestClient(mockTransport); + + var documents = new List + { + "Elon Musk is the CEO of SpaceX and Tesla." + }; + + var options = new TextAnalyticsRequestOptions() + { + ModelVersion = "latest", + DisableServiceLogs = true, + IncludeStatistics = false + }; + + var actions = new RecognizeEntitiesAction(options); + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + RecognizeEntitiesActions = new List() { actions }, + }; + + await client.StartAnalyzeActionsAsync(documents, batchActions); + + var contentString = GetString(mockTransport.Requests.Single().Content); + ValidateRequestOptions(contentString, true); + } + + #endregion entities + + #region linked entities + [Test] public async Task AnalyzeOperationRecognizeLinkedEntitiesWithDisableServiceLogs() { @@ -135,6 +271,73 @@ public async Task AnalyzeOperationRecognizeLinkedEntitiesWithDisableServiceLogs( Assert.AreEqual(expectedContent, logging); } + [Test] + public async Task AnalyzeOperationRecognizeLinkedEntitiesWithRequestOptions() + { + var mockResponse = new MockResponse(202); + mockResponse.AddHeader(new HttpHeader("Operation-Location", "something/jobs/2a96a91f-7edf-4931-a880-3fdee1d56f15")); + + var mockTransport = new MockTransport(new[] { mockResponse, mockResponse }); + var client = CreateTestClient(mockTransport); + + var documents = new List + { + "Elon Musk is the CEO of SpaceX and Tesla." + }; + + var options = new TextAnalyticsRequestOptions(); + + var actions = new RecognizeLinkedEntitiesAction(options); + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + RecognizeLinkedEntitiesActions = new List() { actions }, + }; + + await client.StartAnalyzeActionsAsync(documents, batchActions); + + var contentString = GetString(mockTransport.Requests.Single().Content); + ValidateRequestOptions(contentString); + } + + [Test] + public async Task AnalyzeOperationRecognizeLinkedEntitiesWithRequestOptionsFull() + { + var mockResponse = new MockResponse(202); + mockResponse.AddHeader(new HttpHeader("Operation-Location", "something/jobs/2a96a91f-7edf-4931-a880-3fdee1d56f15")); + + var mockTransport = new MockTransport(new[] { mockResponse, mockResponse }); + var client = CreateTestClient(mockTransport); + + var documents = new List + { + "Elon Musk is the CEO of SpaceX and Tesla." + }; + + var options = new TextAnalyticsRequestOptions() + { + ModelVersion = "latest", + DisableServiceLogs = true, + IncludeStatistics = false + }; + + var actions = new RecognizeLinkedEntitiesAction(options); + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + RecognizeLinkedEntitiesActions = new List() { actions }, + }; + + await client.StartAnalyzeActionsAsync(documents, batchActions); + + var contentString = GetString(mockTransport.Requests.Single().Content); + ValidateRequestOptions(contentString, true); + } + + #endregion linked entities + + #region Pii entities + [Test] public async Task AnalyzeOperationRecognizePiiEntitiesWithDisableServiceLogs() { @@ -168,6 +371,192 @@ public async Task AnalyzeOperationRecognizePiiEntitiesWithDisableServiceLogs() Assert.AreEqual(expectedContent, logging); } + [Test] + public async Task AnalyzeOperationRecognizePiiEntitiesWithPiiOptions() + { + var mockResponse = new MockResponse(202); + mockResponse.AddHeader(new HttpHeader("Operation-Location", "something/jobs/2a96a91f-7edf-4931-a880-3fdee1d56f15")); + + var mockTransport = new MockTransport(new[] { mockResponse, mockResponse }); + var client = CreateTestClient(mockTransport); + + var documents = new List + { + "Elon Musk is the CEO of SpaceX and Tesla." + }; + + var options = new RecognizePiiEntitiesOptions(); + + var actions = new RecognizePiiEntitiesAction(options); + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + RecognizePiiEntitiesActions = new List() { actions }, + }; + + await client.StartAnalyzeActionsAsync(documents, batchActions); + + var contentString = GetString(mockTransport.Requests.Single().Content); + ValidateRequestOptions(contentString); + Assert.AreEqual(-1, contentString.IndexOf("domain")); + Assert.AreEqual(-1, contentString.IndexOf("piiCategories")); + } + + [Test] + public async Task AnalyzeOperationRecognizePiiEntitiesWithPiiOptionsFull() + { + var mockResponse = new MockResponse(202); + mockResponse.AddHeader(new HttpHeader("Operation-Location", "something/jobs/2a96a91f-7edf-4931-a880-3fdee1d56f15")); + + var mockTransport = new MockTransport(new[] { mockResponse, mockResponse }); + var client = CreateTestClient(mockTransport); + + var documents = new List + { + "Elon Musk is the CEO of SpaceX and Tesla." + }; + + var options = new RecognizePiiEntitiesOptions() + { + ModelVersion = "latest", + DisableServiceLogs = true, + IncludeStatistics = true, + DomainFilter = PiiEntityDomain.ProtectedHealthInformation, + CategoriesFilter = { PiiEntityCategory.USSocialSecurityNumber } + }; + + var actions = new RecognizePiiEntitiesAction(options); + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + RecognizePiiEntitiesActions = new List() { actions }, + }; + + await client.StartAnalyzeActionsAsync(documents, batchActions); + + var contentString = GetString(mockTransport.Requests.Single().Content); + ValidateRequestOptions(contentString, true); + + string domaintFilter = contentString.Substring(contentString.IndexOf("domain"), 13); + + var expectedDomainFilterContent = "domain\":\"phi\""; + Assert.AreEqual(expectedDomainFilterContent, domaintFilter); + + string piiCategories = contentString.Substring(contentString.IndexOf("piiCategories"), 41); + + var expectedPiiCategoriesContent = "piiCategories\":[\"USSocialSecurityNumber\"]"; + Assert.AreEqual(expectedPiiCategoriesContent, piiCategories); + } + + #endregion Pii entities + + #region Analyze sentiment + + [Test] + public async Task AnalyzeOperationAnalyzeSentimentWithDisableServiceLogs() + { + var mockResponse = new MockResponse(202); + mockResponse.AddHeader(new HttpHeader("Operation-Location", "something/jobs/2a96a91f-7edf-4931-a880-3fdee1d56f15")); + + var mockTransport = new MockTransport(new[] { mockResponse, mockResponse }); + var client = CreateTestClient(mockTransport); + + var documents = new List + { + "Elon Musk is the CEO of SpaceX and Tesla." + }; + + var actions = new AnalyzeSentimentAction() + { + DisableServiceLogs = true + }; + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + AnalyzeSentimentActions = new List() { actions }, + }; + + await client.StartAnalyzeActionsAsync(documents, batchActions); + + var contentString = GetString(mockTransport.Requests.Single().Content); + string logging = contentString.Substring(contentString.IndexOf("loggingOptOut"), 19); + + var expectedContent = "loggingOptOut\":true"; + Assert.AreEqual(expectedContent, logging); + } + + [Test] + public async Task AnalyzeOperationAnalyzeSentimentWithAnalyzeSentimentOptions() + { + var mockResponse = new MockResponse(202); + mockResponse.AddHeader(new HttpHeader("Operation-Location", "something/jobs/2a96a91f-7edf-4931-a880-3fdee1d56f15")); + + var mockTransport = new MockTransport(new[] { mockResponse, mockResponse }); + var client = CreateTestClient(mockTransport); + + var documents = new List + { + "Elon Musk is the CEO of SpaceX and Tesla." + }; + + var options = new AnalyzeSentimentOptions(); + + var actions = new AnalyzeSentimentAction(options); + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + AnalyzeSentimentActions = new List() { actions }, + }; + + await client.StartAnalyzeActionsAsync(documents, batchActions); + + var contentString = GetString(mockTransport.Requests.Single().Content); + ValidateRequestOptions(contentString); + Assert.AreEqual(-1, contentString.IndexOf("opinionMining")); + } + + [Test] + public async Task AnalyzeOperationAnalyzeSentimentWithAnalyzeSentimentOptionsFull() + { + var mockResponse = new MockResponse(202); + mockResponse.AddHeader(new HttpHeader("Operation-Location", "something/jobs/2a96a91f-7edf-4931-a880-3fdee1d56f15")); + + var mockTransport = new MockTransport(new[] { mockResponse, mockResponse }); + var client = CreateTestClient(mockTransport); + + var documents = new List + { + "Elon Musk is the CEO of SpaceX and Tesla." + }; + + var options = new AnalyzeSentimentOptions() + { + ModelVersion = "latest", + DisableServiceLogs = true, + IncludeStatistics = true, + IncludeOpinionMining = true + }; + + var actions = new AnalyzeSentimentAction(options); + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + AnalyzeSentimentActions = new List() { actions }, + }; + + await client.StartAnalyzeActionsAsync(documents, batchActions); + + var contentString = GetString(mockTransport.Requests.Single().Content); + ValidateRequestOptions(contentString, true); + + string opinionMining = contentString.Substring(contentString.IndexOf("opinionMining"), 19); + + var expectedOpinionMiningContent = "opinionMining\":true"; + Assert.AreEqual(expectedOpinionMiningContent, opinionMining); + } + + #endregion Analyze sentiment + [Test] public async Task AnalyzeOperationWithActionsError() { @@ -218,35 +607,35 @@ public async Task AnalyzeOperationWithActionsError() ""entityRecognitionTasks"": [ { ""lastUpdateDateTime"": ""2021-03-03T22:39:37.1716697Z"", - ""name"": ""something"", + ""taskName"": ""something"", ""state"": ""failed"" } ], ""entityRecognitionPiiTasks"": [ { ""lastUpdateDateTime"": ""2021-03-03T22:39:37.1716697Z"", - ""name"": ""something"", + ""taskName"": ""something"", ""state"": ""failed"" } ], ""keyPhraseExtractionTasks"": [ { ""lastUpdateDateTime"": ""2021-03-03T22:39:37.1716697Z"", - ""name"": ""something"", + ""taskName"": ""something"", ""state"": ""failed"" } ], ""entityLinkingTasks"": [ { ""lastUpdateDateTime"": ""2021-03-03T22:39:37.1716697Z"", - ""name"": ""something"", + ""taskName"": ""something"", ""state"": ""failed"" } ], ""sentimentAnalysisTasks"": [ { ""lastUpdateDateTime"": ""2021-03-03T22:39:37.1716697Z"", - ""name"": ""something"", + ""taskName"": ""something"", ""state"": ""failed"" } ] @@ -295,16 +684,75 @@ public async Task AnalyzeOperationWithActionsError() Assert.Throws(() => entitiesActionsResults.DocumentsResults.GetType()); Assert.IsTrue(keyPhrasesActionsResults.HasError); - Assert.Throws(() => entitiesActionsResults.DocumentsResults.GetType()); + Assert.Throws(() => keyPhrasesActionsResults.DocumentsResults.GetType()); Assert.IsTrue(piiActionsResults.HasError); - Assert.Throws(() => entitiesActionsResults.DocumentsResults.GetType()); + Assert.Throws(() => piiActionsResults.DocumentsResults.GetType()); Assert.IsTrue(entityLinkingActionsResults.HasError); - Assert.Throws(() => entitiesActionsResults.DocumentsResults.GetType()); + Assert.Throws(() => entityLinkingActionsResults.DocumentsResults.GetType()); Assert.IsTrue(analyzeSentimentActionsResults.HasError); - Assert.Throws(() => entitiesActionsResults.DocumentsResults.GetType()); + Assert.Throws(() => analyzeSentimentActionsResults.DocumentsResults.GetType()); + } + + [Test] + public void AnalyzeOperationWithGenericError() + { + using var stream = new MemoryStream(Encoding.UTF8.GetBytes(@" + { + ""displayName"": ""AnalyzeOperationBatchWithErrorTest"", + ""jobId"": ""75d521bc-c2aa-4d8a-aabe-713e72d53a2d"", + ""lastUpdateDateTime"": ""2021-03-03T22:39:37Z"", + ""createdDateTime"": ""2021-03-03T22:39:36Z"", + ""expirationDateTime"": ""2021-03-04T22:39:36Z"", + ""status"": ""failed"", + ""errors"": [ + { + ""code"": ""InternalServerError"", + ""message"": ""Some error"" + } + ], + ""tasks"": { + ""details"": { + ""name"": ""AnalyzeOperationBatchWithErrorTest"", + ""lastUpdateDateTime"": ""2021-03-03T22:39:37Z"" + }, + ""completed"": 0, + ""failed"": 1, + ""inProgress"": 0, + ""total"": 1, + ""entityRecognitionTasks"": [ + { + ""lastUpdateDateTime"": ""2021-03-03T22:39:37.1716697Z"", + ""taskName"": ""something"", + ""state"": ""failed"" + } + ] + } + }")); + + var mockResponse = new MockResponse(200); + mockResponse.ContentStream = stream; + + var mockTransport = new MockTransport(new[] { mockResponse }); + var client = CreateTestClient(mockTransport); + + var documents = new List + { + "Elon Musk is the CEO of SpaceX and Tesla." + }; + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + ExtractKeyPhrasesActions = new List() { new ExtractKeyPhrasesAction() }, + DisplayName = "AnalyzeOperationBatchWithErrorTest" + }; + + var operation = new AnalyzeActionsOperation("75d521bc-c2aa-4d8a-aabe-713e72d53a2d", client); + RequestFailedException ex = Assert.ThrowsAsync(async () => await operation.UpdateStatusAsync()); + Assert.AreEqual("InternalServerError", ex.ErrorCode); + Assert.IsTrue(ex.Message.Contains("Some error")); } private static string GetString(RequestContent content) @@ -314,5 +762,29 @@ private static string GetString(RequestContent content) return Encoding.UTF8.GetString(stream.ToArray()); } + + private static void ValidateRequestOptions(string contentString, bool full = false) + { + if (!full) + { + Assert.AreEqual(-1, contentString.IndexOf("loggingOptOut")); + Assert.AreEqual(-1, contentString.IndexOf("model-version")); + Assert.AreEqual(-1, contentString.IndexOf("show-stats")); + } + else + { + string logging = contentString.Substring(contentString.IndexOf("loggingOptOut"), 19); + + var expectedContent = "loggingOptOut\":true"; + Assert.AreEqual(expectedContent, logging); + + string modelVersion = contentString.Substring(contentString.IndexOf("model-version"), 23); + + var expectedModelVersionContent = "model-version\":\"latest\""; + Assert.AreEqual(expectedModelVersionContent, modelVersion); + + Assert.AreEqual(-1, contentString.IndexOf("show-stats")); + } + } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationTests.cs index 8eac1562b82e..512eb1cf9b7a 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 { - [ClientTestFixture(TextAnalyticsClientOptions.ServiceVersion.V3_1_Preview_5)] + [ClientTestFixture(TextAnalyticsClientOptions.ServiceVersion.V3_1)] public class AnalyzeOperationTests : TextAnalyticsClientLiveTestBase { public AnalyzeOperationTests(bool isAsync, TextAnalyticsClientOptions.ServiceVersion serviceVersion) @@ -37,6 +37,7 @@ public AnalyzeOperationTests(bool isAsync, TextAnalyticsClientOptions.ServiceVer }; [RecordedTest] + [Ignore("https://github.com/Azure/azure-sdk-for-net/issues/21782")] public async Task AnalyzeOperationWithAADTest() { TextAnalyticsClient client = GetClient(useTokenCredential: true); @@ -215,6 +216,7 @@ public async Task AnalyzeOperationWithMultipleActions() Assert.IsNotNull(entitiesActionsResults); Assert.IsNotNull(piiActionsResults); Assert.IsNotNull(entityLinkingActionsResults); + Assert.IsNotNull(analyzeSentimentActionsResults); Assert.AreEqual("AnalyzeOperationWithMultipleTasks", operation.DisplayName); // Keyphrases @@ -407,7 +409,7 @@ public async Task AnalyzeOperationWithErrorsInDocumentTest() } [RecordedTest] - [Ignore("https://github.com/Azure/azure-sdk-for-net/issues/20984")] + [Ignore("https://github.com/Azure/azure-sdk-for-net/issues/21802")] public async Task AnalyzeOperationWithPHIDomain() { TextAnalyticsClient client = GetClient(); @@ -443,6 +445,42 @@ public async Task AnalyzeOperationWithPHIDomain() Assert.AreEqual(2, piiDocumentsResults[0].Entities.Count); } + [RecordedTest] + public async Task AnalyzeOperationWithPiiCategories() + { + TextAnalyticsClient client = GetClient(); + + var documents = new List + { + "A developer with SSN 859-98-0987 whose phone number is 800-102-1100 is building tools with our APIs. They work at Microsoft.", + }; + + TextAnalyticsActions batchActions = new TextAnalyticsActions() + { + RecognizePiiEntitiesActions = new List() { new RecognizePiiEntitiesAction() { CategoriesFilter = { PiiEntityCategory.USSocialSecurityNumber } } }, + }; + + AnalyzeActionsOperation operation = await client.StartAnalyzeActionsAsync(documents, batchActions, "en"); + + await operation.WaitForCompletionAsync(); + + //Take the first page + AnalyzeActionsResult resultCollection = operation.Value.ToEnumerableAsync().Result.FirstOrDefault(); + + IReadOnlyCollection piiActionsResults = resultCollection.RecognizePiiEntitiesResults; + + Assert.IsNotNull(piiActionsResults); + + RecognizePiiEntitiesResultCollection piiDocumentsResults = piiActionsResults.FirstOrDefault().DocumentsResults; + Assert.AreEqual(1, piiDocumentsResults.Count); + + Assert.IsNotEmpty(piiDocumentsResults[0].Entities.RedactedText); + + Assert.IsFalse(piiDocumentsResults[0].HasError); + Assert.AreEqual(1, piiDocumentsResults[0].Entities.Count); + Assert.AreEqual(PiiEntityCategory.USSocialSecurityNumber, piiDocumentsResults[0].Entities.FirstOrDefault().Category); + } + [RecordedTest] public async Task AnalyzeOperationWithStatisticsTest() { @@ -572,5 +610,72 @@ public async Task AnalyzeOperationAnalyzeSentimentWithOpinionMining() Assert.AreEqual(TextSentiment.Mixed, analyzeSentimentDocumentsResults[0].DocumentSentiment.Sentiment); } + + [RecordedTest] + [TestCase(true)] + [TestCase(false)] + public async Task AnalyzeOperationWithActionName(bool useActionName) + { + TextAnalyticsClient client = GetClient(); + + TextAnalyticsActions batchActions; + + if (useActionName) + { + batchActions = new TextAnalyticsActions() + { + ExtractKeyPhrasesActions = new List() { new ExtractKeyPhrasesAction() { ActionName = "MyExtractKPAction"} }, + RecognizeEntitiesActions = new List() { new RecognizeEntitiesAction() { ActionName = "MyRecognizeEntitiesAction" } }, + RecognizePiiEntitiesActions = new List() { new RecognizePiiEntitiesAction() { ActionName = "MyRecognizePiiEntitiesAction" } }, + RecognizeLinkedEntitiesActions = new List() { new RecognizeLinkedEntitiesAction() { ActionName = "MyRecognizeLinkedEntitiesAction" } }, + AnalyzeSentimentActions = new List() { new AnalyzeSentimentAction() { ActionName = "MyAnalyzeSentimentAction" } }, + DisplayName = "AnalyzeOperationWithMultipleTasks" + }; + } + else + { + batchActions = new TextAnalyticsActions() + { + ExtractKeyPhrasesActions = new List() { new ExtractKeyPhrasesAction() }, + RecognizeEntitiesActions = new List() { new RecognizeEntitiesAction() }, + RecognizePiiEntitiesActions = new List() { new RecognizePiiEntitiesAction() }, + RecognizeLinkedEntitiesActions = new List() { new RecognizeLinkedEntitiesAction() }, + AnalyzeSentimentActions = new List() { new AnalyzeSentimentAction() }, + DisplayName = "AnalyzeOperationWithMultipleTasks" + }; + } + + AnalyzeActionsOperation operation = await client.StartAnalyzeActionsAsync(batchConvenienceDocuments, batchActions); + await operation.WaitForCompletionAsync(); + + //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; + + Assert.IsNotNull(keyPhrasesActionsResults); + Assert.IsNotNull(entitiesActionsResults); + Assert.IsNotNull(piiActionsResults); + Assert.IsNotNull(entityLinkingActionsResults); + Assert.IsNotNull(analyzeSentimentActionsResults); + Assert.AreEqual("AnalyzeOperationWithMultipleTasks", operation.DisplayName); + + if (useActionName) + { + Assert.AreEqual("MyExtractKPAction", keyPhrasesActionsResults.FirstOrDefault().ActionName); + Assert.AreEqual("MyRecognizeEntitiesAction", entitiesActionsResults.FirstOrDefault().ActionName); + Assert.AreEqual("MyRecognizePiiEntitiesAction", piiActionsResults.FirstOrDefault().ActionName); + Assert.AreEqual("MyRecognizeLinkedEntitiesAction", entityLinkingActionsResults.FirstOrDefault().ActionName); + Assert.AreEqual("MyAnalyzeSentimentAction", analyzeSentimentActionsResults.FirstOrDefault().ActionName); + } + else + { + Assert.IsNotEmpty(keyPhrasesActionsResults.FirstOrDefault().ActionName); + } + } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeSentimentTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeSentimentTests.cs index 481a55830ebd..c7ae0816eecf 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeSentimentTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeSentimentTests.cs @@ -39,6 +39,7 @@ public AnalyzeSentimentTests(bool isAsync, TextAnalyticsClientOptions.ServiceVer }; [RecordedTest] + [Ignore("https://github.com/Azure/azure-sdk-for-net/issues/21782")] public async Task AnalyzeSentimentWithAADTest() { TextAnalyticsClient client = GetClient(useTokenCredential: true); @@ -77,7 +78,7 @@ public async Task AnalyzeSentimentWithLanguageTest() } [RecordedTest] - [ServiceVersion(Min = TextAnalyticsClientOptions.ServiceVersion.V3_1_Preview_5)] + [ServiceVersion(Min = TextAnalyticsClientOptions.ServiceVersion.V3_1)] public async Task AnalyzeSentimentWithOpinionMining() { TextAnalyticsClient client = GetClient(); @@ -90,7 +91,7 @@ public async Task AnalyzeSentimentWithOpinionMining() } [RecordedTest] - [ServiceVersion(Min = TextAnalyticsClientOptions.ServiceVersion.V3_1_Preview_5)] + [ServiceVersion(Min = TextAnalyticsClientOptions.ServiceVersion.V3_1)] public async Task AnalyzeSentimentWithOpinionMiningEmpty() { TextAnalyticsClient client = GetClient(); @@ -103,7 +104,7 @@ public async Task AnalyzeSentimentWithOpinionMiningEmpty() } [RecordedTest] - [ServiceVersion(Min = TextAnalyticsClientOptions.ServiceVersion.V3_1_Preview_5)] + [ServiceVersion(Min = TextAnalyticsClientOptions.ServiceVersion.V3_1)] public async Task AnalyzeSentimentWithOpinionMiningNegated() { TextAnalyticsClient client = GetClient(); @@ -162,7 +163,7 @@ public async Task AnalyzeSentimentBatchConvenienceTest() } [RecordedTest] - [ServiceVersion(Min = TextAnalyticsClientOptions.ServiceVersion.V3_1_Preview_5)] + [ServiceVersion(Min = TextAnalyticsClientOptions.ServiceVersion.V3_1)] public async Task AnalyzeSentimentBatchConvenienceWithOpinionMiningTest() { TextAnalyticsClient client = GetClient(); @@ -340,7 +341,7 @@ public async Task AnalyzeSentimentBatchTest() } [RecordedTest] - [ServiceVersion(Min = TextAnalyticsClientOptions.ServiceVersion.V3_1_Preview_5)] + [ServiceVersion(Min = TextAnalyticsClientOptions.ServiceVersion.V3_1)] public async Task AnalyzeSentimentBatchWithOpinionMiningTest() { TextAnalyticsClient client = GetClient(); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/DetectLanguageTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/DetectLanguageTests.cs index 3056ad44f118..ce33975ecd0a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/DetectLanguageTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/DetectLanguageTests.cs @@ -54,6 +54,7 @@ public DetectLanguageTests(bool isAsync, TextAnalyticsClientOptions.ServiceVersi }; [RecordedTest] + [Ignore("https://github.com/Azure/azure-sdk-for-net/issues/21782")] public async Task DetectLanguageWithAADTest() { TextAnalyticsClient client = GetClient(useTokenCredential: true); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/ExtractKeyPhrasesTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/ExtractKeyPhrasesTests.cs index 726dc5418bcf..97ac1e3f1acc 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/ExtractKeyPhrasesTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/ExtractKeyPhrasesTests.cs @@ -39,6 +39,7 @@ public ExtractKeyPhrasesTests(bool isAsync, TextAnalyticsClientOptions.ServiceVe }; [RecordedTest] + [Ignore("https://github.com/Azure/azure-sdk-for-net/issues/21782")] public async Task ExtractKeyPhrasesWithAADTest() { TextAnalyticsClient client = GetClient(useTokenCredential: true); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/Infrastructure/TextAnalyticsClientLiveTestBase.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/Infrastructure/TextAnalyticsClientLiveTestBase.cs index c976608e59ee..46dd1a839071 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/Infrastructure/TextAnalyticsClientLiveTestBase.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/Infrastructure/TextAnalyticsClientLiveTestBase.cs @@ -8,7 +8,7 @@ namespace Azure.AI.TextAnalytics.Tests { [ClientTestFixture( TextAnalyticsClientOptions.ServiceVersion.V3_0, - TextAnalyticsClientOptions.ServiceVersion.V3_1_Preview_5)] + TextAnalyticsClientOptions.ServiceVersion.V3_1)] public class TextAnalyticsClientLiveTestBase : RecordedTestBase { /// diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeEntitiesTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeEntitiesTests.cs index 84cd1e6db0c1..0daae37fedcf 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeEntitiesTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeEntitiesTests.cs @@ -53,6 +53,7 @@ public RecognizeEntitiesTests(bool isAsync, TextAnalyticsClientOptions.ServiceVe }; [RecordedTest] + [Ignore("https://github.com/Azure/azure-sdk-for-net/issues/21782")] public async Task RecognizeEntitiesWithAADTest() { TextAnalyticsClient client = GetClient(useTokenCredential: true); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeHealthcareEntitiesTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeHealthcareEntitiesTests.cs index e408201d9c98..4692f16b8d21 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeHealthcareEntitiesTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeHealthcareEntitiesTests.cs @@ -10,7 +10,7 @@ namespace Azure.AI.TextAnalytics.Tests { - [ClientTestFixture(TextAnalyticsClientOptions.ServiceVersion.V3_1_Preview_5)] + [ClientTestFixture(TextAnalyticsClientOptions.ServiceVersion.V3_1)] public class RecognizeHealthcareEntitiesTests : TextAnalyticsClientLiveTestBase { public RecognizeHealthcareEntitiesTests(bool isAsync, TextAnalyticsClientOptions.ServiceVersion serviceVersion) @@ -92,7 +92,7 @@ public async Task RecognizeHealthcareEntitiesTest() if (entity.Text == "100mg") { Assert.AreEqual(18, entity.Offset); - Assert.AreEqual("Dosage", entity.Category); + Assert.AreEqual(HealthcareEntityCategory.Dosage, entity.Category); Assert.AreEqual(5, entity.Length); } } @@ -108,13 +108,14 @@ public async Task RecognizeHealthcareEntitiesTest() Assert.AreEqual("Dosage", role.Name); Assert.AreEqual("100mg", role.Entity.Text); Assert.AreEqual(18, role.Entity.Offset); - Assert.AreEqual("Dosage", role.Entity.Category); + Assert.AreEqual(HealthcareEntityCategory.Dosage, role.Entity.Category); Assert.AreEqual(5, role.Entity.Length); } } } [RecordedTest] + [Ignore("https://github.com/Azure/azure-sdk-for-net/issues/21796")] public async Task RecognizeHealthcareEntitiesTestWithAssertions() { TextAnalyticsClient client = GetClient(); @@ -163,7 +164,7 @@ public async Task RecognizeHealthcareEntitiesTestWithAssertions() if (entity.Text == "Meningitis") { Assert.AreEqual(24, entity.Offset); - Assert.AreEqual("Diagnosis", entity.Category); + Assert.AreEqual(HealthcareEntityCategory.Diagnosis, entity.Category); Assert.AreEqual(10, entity.Length); Assert.IsNotNull(entity.Assertion); Assert.AreEqual(EntityCertainty.NegativePossible, entity.Assertion.Certainty.Value); @@ -171,7 +172,7 @@ public async Task RecognizeHealthcareEntitiesTestWithAssertions() if (entity.Text == "Penicillin") { - Assert.AreEqual("MedicationName", entity.Category); + Assert.AreEqual(HealthcareEntityCategory.MedicationName, entity.Category); Assert.AreEqual(10, entity.Length); Assert.IsNotNull(entity.Assertion); Assert.AreEqual(EntityCertainty.NeutralPossible, entity.Assertion.Certainty.Value); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeLinkedEntitiesTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeLinkedEntitiesTests.cs index 6999f0d180eb..af4de5723ce1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeLinkedEntitiesTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeLinkedEntitiesTests.cs @@ -54,6 +54,7 @@ public RecognizeLinkedEntitiesTests(bool isAsync, TextAnalyticsClientOptions.Ser }; [RecordedTest] + [Ignore("https://github.com/Azure/azure-sdk-for-net/issues/21782")] public async Task RecognizeLinkedEntitiesWithAADTest() { TextAnalyticsClient client = GetClient(useTokenCredential: true); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizePiiEntitiesTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizePiiEntitiesTests.cs index 56e5a476e2ce..349f0eaa7692 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizePiiEntitiesTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizePiiEntitiesTests.cs @@ -10,7 +10,7 @@ namespace Azure.AI.TextAnalytics.Tests { - [ClientTestFixture(TextAnalyticsClientOptions.ServiceVersion.V3_1_Preview_5)] + [ClientTestFixture(TextAnalyticsClientOptions.ServiceVersion.V3_1)] public class RecognizePiiEntitiesTests : TextAnalyticsClientLiveTestBase { public RecognizePiiEntitiesTests(bool isAsync, TextAnalyticsClientOptions.ServiceVersion serviceVersion) @@ -53,6 +53,7 @@ public RecognizePiiEntitiesTests(bool isAsync, TextAnalyticsClientOptions.Servic }; [RecordedTest] + [Ignore("https://github.com/Azure/azure-sdk-for-net/issues/21782")] public async Task RecognizePiiEntitiesWithAADTest() { TextAnalyticsClient client = GetClient(useTokenCredential: true); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationAllActionsAndDisableServiceLogs.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationAllActionsAndDisableServiceLogs.json index 5a5faf81b713..ed87931eb6cb 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.1-preview.5/analyze", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "657", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9cc3cade5858c349afaa377b98526d9b-25a350e3bca32e47-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-c22b297f0010ac419db58ffaa6bf226f-d548b8b7dfae1044-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "782379accaf823684ab3ddba1b6d3561", "x-ms-return-client-request-id": "true" }, @@ -72,58 +78,103 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "b58fe178-e37f-4529-b800-be9f0d828174", - "Date": "Thu, 27 May 2021 18:03:09 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/6eeb0fab-7f6c-4aa4-94a3-6a39341364d1", + "apim-request-id": "0820709f-00b6-442e-b5b4-d51c681a5bfa", + "Date": "Tue, 29 Jun 2021 19:13:19 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5373" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "518" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/6eeb0fab-7f6c-4aa4-94a3-6a39341364d1", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "1e77cfb5-0fb9-401b-99e4-bbddce84bab2", + "apim-request-id": "1fd7c9e3-bf1a-4a6f-b247-3ff6a64bfb02", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:03:15 GMT", + "Date": "Tue, 29 Jun 2021 19:13:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5098" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { - "jobId": "6eeb0fab-7f6c-4aa4-94a3-6a39341364d1", - "lastUpdateDateTime": "2021-05-27T18:03:13Z", - "createdDateTime": "2021-05-27T18:03:04Z", - "expirationDateTime": "2021-05-28T18:03:04Z", + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:20Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "notStarted", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 5, + "total": 5 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "06429fc7-a773-4056-94ad-1876a3eafac5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "91" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:21Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:03:13Z" - }, "completed": 1, "failed": 0, "inProgress": 4, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:03:13.1823693Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -209,47 +260,49 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/6eeb0fab-7f6c-4aa4-94a3-6a39341364d1", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8b23d49428581723bf3cd5f948f9b6f0", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "9874a475-6e5c-45b9-a83e-e5b3952061be", + "apim-request-id": "d0717348-4232-431b-a486-1c153911abcd", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:03:21 GMT", + "Date": "Tue, 29 Jun 2021 19:13:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5113" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "65" }, "ResponseBody": { - "jobId": "6eeb0fab-7f6c-4aa4-94a3-6a39341364d1", - "lastUpdateDateTime": "2021-05-27T18:03:18Z", - "createdDateTime": "2021-05-27T18:03:04Z", - "expirationDateTime": "2021-05-28T18:03:04Z", + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:21Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:03:18Z" - }, "completed": 1, "failed": 0, "inProgress": 4, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:03:13.1823693Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -335,47 +388,49 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/6eeb0fab-7f6c-4aa4-94a3-6a39341364d1", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "987bba592dc9f935eff158ecca5b8b4f", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "3fe26124-f566-414d-8a55-32aa0de48cdb", + "apim-request-id": "c124ba76-6b41-4b42-9dcb-f31abcf45f96", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:03:28 GMT", + "Date": "Tue, 29 Jun 2021 19:13:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5130" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "65" }, "ResponseBody": { - "jobId": "6eeb0fab-7f6c-4aa4-94a3-6a39341364d1", - "lastUpdateDateTime": "2021-05-27T18:03:18Z", - "createdDateTime": "2021-05-27T18:03:04Z", - "expirationDateTime": "2021-05-28T18:03:04Z", + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:21Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:03:18Z" - }, "completed": 1, "failed": 0, "inProgress": 4, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:03:13.1823693Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -461,47 +516,49 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/6eeb0fab-7f6c-4aa4-94a3-6a39341364d1", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4725b4e1aa495a0919087199de91e826", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "65e3a131-5bd1-479b-8ab3-e79f7c6664ef", + "apim-request-id": "5a3531bb-9739-4b19-baa8-0c02780c39d5", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:03:34 GMT", + "Date": "Tue, 29 Jun 2021 19:13:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5079" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "53" }, "ResponseBody": { - "jobId": "6eeb0fab-7f6c-4aa4-94a3-6a39341364d1", - "lastUpdateDateTime": "2021-05-27T18:03:18Z", - "createdDateTime": "2021-05-27T18:03:04Z", - "expirationDateTime": "2021-05-28T18:03:04Z", + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:21Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:03:18Z" - }, "completed": 1, "failed": 0, "inProgress": 4, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:03:13.1823693Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -587,47 +644,49 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/6eeb0fab-7f6c-4aa4-94a3-6a39341364d1", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ddb30f55397e675f9e2a9b66d0364c64", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "d1f0649c-421c-45c6-bfc6-e5913a1dd4a0", + "apim-request-id": "d7f83cd8-f11d-4c96-9739-44661f55629b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:03:35 GMT", + "Date": "Tue, 29 Jun 2021 19:13:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "96" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "61" }, "ResponseBody": { - "jobId": "6eeb0fab-7f6c-4aa4-94a3-6a39341364d1", - "lastUpdateDateTime": "2021-05-27T18:03:33Z", - "createdDateTime": "2021-05-27T18:03:04Z", - "expirationDateTime": "2021-05-28T18:03:04Z", + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:21Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:03:33Z" - }, - "completed": 3, + "completed": 1, "failed": 0, - "inProgress": 2, + "inProgress": 4, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:03:13.1823693Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -708,104 +767,132 @@ "modelVersion": "2020-02-01" } } - ], - "entityRecognitionPiiTasks": [ + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "9c99d3bc-ec0c-428e-9b11-7047f72f5325", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "54" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:21Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:03:32.3393857Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_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 + "name": "Elon Musk", + "matches": [ + { + "text": "Elon Musk", + "offset": 0, + "length": 9, + "confidenceScore": 0.94 + } + ], + "language": "en", + "id": "Elon Musk", + "url": "https://en.wikipedia.org/wiki/Elon_Musk", + "dataSource": "Wikipedia" }, { - "text": "SpaceX", - "category": "Organization", - "offset": 24, - "length": 6, - "confidenceScore": 0.98 + "name": "SpaceX", + "matches": [ + { + "text": "SpaceX", + "offset": 24, + "length": 6, + "confidenceScore": 0.63 + } + ], + "language": "en", + "id": "SpaceX", + "url": "https://en.wikipedia.org/wiki/SpaceX", + "dataSource": "Wikipedia" }, { - "text": "Tesla", - "category": "Organization", - "offset": 35, - "length": 5, - "confidenceScore": 0.98 + "name": "Tesla, Inc.", + "matches": [ + { + "text": "Tesla", + "offset": 35, + "length": 5, + "confidenceScore": 0.47 + } + ], + "language": "en", + "id": "Tesla, Inc.", + "url": "https://en.wikipedia.org/wiki/Tesla,_Inc.", + "dataSource": "Wikipedia" } ], "warnings": [] }, { - "redactedText": "***** stock is up by 400% *********.", "id": "1", "entities": [ { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "text": "this year", - "category": "DateTime", - "subcategory": "DateRange", - "offset": 26, - "length": 9, - "confidenceScore": 0.8 + "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-01-15" - } - } - ], - "keyPhraseExtractionTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:03:33.2721799Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "keyPhrases": [ - "CEO of SpaceX", - "Elon Musk", - "Tesla" - ], - "warnings": [] - }, - { - "id": "1", - "keyPhrases": [ - "Tesla stock", - "year" - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-02-01" } } ] @@ -813,47 +900,49 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/6eeb0fab-7f6c-4aa4-94a3-6a39341364d1", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "941785b06fd3afa7b1217fc0bb9c1a5e", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "3e92cefd-29c2-4fdf-a76d-601217830ece", + "apim-request-id": "14517c38-1292-4f0e-93fb-0d9ac2875db1", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:03:41 GMT", + "Date": "Tue, 29 Jun 2021 19:13:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5183" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "154" }, "ResponseBody": { - "jobId": "6eeb0fab-7f6c-4aa4-94a3-6a39341364d1", - "lastUpdateDateTime": "2021-05-27T18:03:33Z", - "createdDateTime": "2021-05-27T18:03:04Z", - "expirationDateTime": "2021-05-28T18:03:04Z", + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:27Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:03:33Z" - }, - "completed": 3, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 3, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:03:13.1823693Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -937,8 +1026,8 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:03:32.3393857Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "taskName": "PersonallyIdentifiableInformation_latest", "state": "succeeded", "results": { "documents": [ @@ -1004,82 +1093,54 @@ "modelVersion": "2021-01-15" } } - ], - "keyPhraseExtractionTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:03:33.2721799Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "keyPhrases": [ - "CEO of SpaceX", - "Elon Musk", - "Tesla" - ], - "warnings": [] - }, - { - "id": "1", - "keyPhrases": [ - "Tesla stock", - "year" - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-07-01" - } - } ] } } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/6eeb0fab-7f6c-4aa4-94a3-6a39341364d1", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "bb973109aea8a8d054bea81f0ea289e2", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "58e86af5-3e9e-4faf-8ead-88fcd94c3257", + "apim-request-id": "86b0892b-7edc-4c55-b5cb-cfb4d7830957", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:03:42 GMT", + "Date": "Tue, 29 Jun 2021 19:13:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "140" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "104" }, "ResponseBody": { - "jobId": "6eeb0fab-7f6c-4aa4-94a3-6a39341364d1", - "lastUpdateDateTime": "2021-05-27T18:03:33Z", - "createdDateTime": "2021-05-27T18:03:04Z", - "expirationDateTime": "2021-05-28T18:03:04Z", + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:27Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:03:33Z" - }, - "completed": 3, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 3, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:03:13.1823693Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -1163,8 +1224,8 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:03:32.3393857Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "taskName": "PersonallyIdentifiableInformation_latest", "state": "succeeded", "results": { "documents": [ @@ -1230,82 +1291,9736 @@ "modelVersion": "2021-01-15" } } - ], - "keyPhraseExtractionTasks": [ + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "2bbfb555-5d2d-4c7a-8310-ef1129d62a8c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "95" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:27Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 3, + "total": 5, + "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:03:33.2721799Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ { "id": "0", - "keyPhrases": [ - "CEO of SpaceX", - "Elon Musk", - "Tesla" - ], - "warnings": [] - }, - { - "id": "1", - "keyPhrases": [ - "Tesla stock", - "year" + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "eca82123-13b8-48c8-b7e7-6f7988b9c276", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "121" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:27Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 3, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "ee88714d-ab42-454a-99f0-9a744bc4e0ba", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "135" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:27Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 3, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "2dae8b6f-7eb5-45cd-809e-995bbf6350a8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "114" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:27Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 3, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "2246851d-738e-496e-bc95-271803e1e4c9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:34 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": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:27Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 3, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "eec36814-32c7-46f0-a819-42dcaab2e3d4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "129" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:27Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 3, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "62c946f9-c069-4665-980d-e09c5e197fbe", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "142" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:27Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 3, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "c1e13d70-0ae6-4deb-abec-f864ba477a9e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "150" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "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-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "1c9682f9-faa1-48e1-9f1a-48f8cacd1233", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "156" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "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-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "1e6877b8-b553-4317-a0a4-621f3fb35e51", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "203" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "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-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "d63a9376-7780-45c3-93ce-bcbadb9f63bb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "161" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "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-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "0a680ce2-7f08-4b05-84cd-0f8a79b267cb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "159" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "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-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "47d20640de90239aa708c6ff8dbbf4a0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fcaee6a6-ab67-45b3-a734-2969632f5b0c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "250" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "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-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1cb76c6b43fc8b8f2d0793e71fe36c7f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "285d4a80-7a9f-4afc-8679-3121799ec1f7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:46 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": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "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-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f43211cf164692c54edab07d2ac18e0f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "61220d1a-1002-4e7e-9c16-854fc3aaabe5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "170" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "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-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f2c2b3b42d85fddb76471a894ab204c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d7952ae7-b52d-4727-9c73-bce07e616e4f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "234" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "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-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7c30469bff88555aa724cd219211606b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "92c4a9a1-c319-43c7-a8a3-deffed9a6400", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "162" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "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-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6b3284787921a1fa36357efffc3b479b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d55697bb-093a-48aa-bb2a-ac2458b6edf7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "238" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "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-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e3e2ecd61191b486596c4a605fb96b65", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "881c67c6-bb1e-4e67-912e-d80c772af851", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "157" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "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-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c610aee6997f21a34c8e4653815b596b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "03fb87f6-762c-4872-aa43-70f4996a837c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "158" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "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-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a54a31dc7d2f66d9fe7e11b42f99417c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ef20a9fb-44f9-4d91-ac57-6b4070887e94", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "252" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "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-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4d1818c9812a3d1b49c09702cb3232fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7f9496dc-6c20-4cd5-bbe4-07fe70caf56c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "177" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "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-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2e84df13c56f6836d4aac80187eef2b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "aba3d5ae-2a89-4661-93a1-4d2735d4bfa3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "165" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "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-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6989ca4c0b425a41150d5b6fe6d69bcb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "135e3e5a-e2f0-4984-8d7b-188b9f56adb6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "163" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "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-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4fa0134c1315040ce2af7880b81ab65a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ecabe1c9-89d8-420f-b8b5-1c257792c652", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "159" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "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-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "01b6e4cdc9a807bc9d29186169c782fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c105f7d4-5c40-4da6-97b7-6e5092afe54a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:14:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "198" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "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-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "74b4fd0ea24e399dbd85879293c0a2fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "598b0c76-301c-47f6-a650-e4309ec6b11c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:14: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": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "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-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "01a101579a2083225698b2ebfaab9a1b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6006576a-2815-42dd-83d3-da40c67d8ef6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:14:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "137" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "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-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bb717a2d41652a0c477c4323422974dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "07d2fe0b-1616-4e0c-931f-ae5e59fbc5ba", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:14:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "158" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "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-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "680a1d87812574ddda311db5f0b23e12", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "21ad28a1-83d3-437f-a1ee-fc932e9a427b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:14:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "446" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "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-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "18656bebe64e1595f477baa456ff412d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9eab8a5a-439c-4849-a81e-4ad3ee74e418", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:14:07 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "363" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "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-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd63d42431a0abf59dfce13324573994", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "65183072-7ddb-441a-ba22-4c79ae682534", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:14:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "165" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "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-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d637313e5bc4a18e88f574aec6381eda", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "586c2cc1-8380-4aef-a5f9-baef333b331c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:14:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "139" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "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-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c90f0f0614eb97175b97b520461f09d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "25b68222-5405-4fc9-99d9-f89f342130d5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:14:10 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": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "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-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2566253d6ac7c86946c254abbd47e464", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3e76ea80-ea7f-41fb-882d-735ff06da180", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:14:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "164" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "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-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "344206de1dc6dc46bf7d600ae03c9c27", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fe2f5b1c-0955-49c9-800a-827dffe3994f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:14:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "248" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "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-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a171d604f9d2861386c7d58c0cc6fc2e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "15f2b5ca-849f-43d9-8d9a-a2dd2208afa7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:14:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "152" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "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-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "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.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fe7316d5bc1e1fd6df8965490a5ee809", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5d029061-8f42-44ce-856e-7a7d1b2546ad", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:14:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "148" + }, + "ResponseBody": { + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "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": "2020-07-01" + "modelVersion": "2021-06-01" } } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/6eeb0fab-7f6c-4aa4-94a3-6a39341364d1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "58e80dbb5479e65268032b5cb99fab01", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3e94352c-856b-4bd3-ad1a-6b6fdb374240", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:03:43 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "138" - }, - "ResponseBody": { - "jobId": "6eeb0fab-7f6c-4aa4-94a3-6a39341364d1", - "lastUpdateDateTime": "2021-05-27T18:03:33Z", - "createdDateTime": "2021-05-27T18:03:04Z", - "expirationDateTime": "2021-05-28T18:03:04Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:03:33Z" - }, - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, + ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:03:13.1823693Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -1389,8 +11104,8 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:03:32.3393857Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "taskName": "PersonallyIdentifiableInformation_latest", "state": "succeeded", "results": { "documents": [ @@ -1456,82 +11171,54 @@ "modelVersion": "2021-01-15" } } - ], - "keyPhraseExtractionTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:03:33.2721799Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "keyPhrases": [ - "CEO of SpaceX", - "Elon Musk", - "Tesla" - ], - "warnings": [] - }, - { - "id": "1", - "keyPhrases": [ - "Tesla stock", - "year" - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-07-01" - } - } ] } } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/6eeb0fab-7f6c-4aa4-94a3-6a39341364d1", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e6a72d2643d6e591f3bcadfe47bacff8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "51909ebf-b430-4265-a502-f1bee6e9630e", + "apim-request-id": "fa197ee4-5e99-44bc-b640-922b0062c482", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:03:44 GMT", + "Date": "Tue, 29 Jun 2021 19:14:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "118" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "158" }, "ResponseBody": { - "jobId": "6eeb0fab-7f6c-4aa4-94a3-6a39341364d1", - "lastUpdateDateTime": "2021-05-27T18:03:44Z", - "createdDateTime": "2021-05-27T18:03:04Z", - "expirationDateTime": "2021-05-28T18:03:04Z", + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:03:44Z" - }, - "completed": 4, + "completed": 3, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:03:44.9943096Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "taskName": "NamedEntityRecognition_latest", "state": "succeeded", "results": { "documents": [ @@ -1543,28 +11230,28 @@ "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": [] @@ -1577,7 +11264,7 @@ "category": "Organization", "offset": 0, "length": 5, - "confidenceScore": 0.95 + "confidenceScore": 0.98 }, { "text": "400%", @@ -1600,14 +11287,14 @@ } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:03:13.1823693Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -1691,8 +11378,8 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:03:32.3393857Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "taskName": "PersonallyIdentifiableInformation_latest", "state": "succeeded", "results": { "documents": [ @@ -1758,82 +11445,54 @@ "modelVersion": "2021-01-15" } } - ], - "keyPhraseExtractionTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:03:33.2721799Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "keyPhrases": [ - "CEO of SpaceX", - "Elon Musk", - "Tesla" - ], - "warnings": [] - }, - { - "id": "1", - "keyPhrases": [ - "Tesla stock", - "year" - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-07-01" - } - } ] } } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/6eeb0fab-7f6c-4aa4-94a3-6a39341364d1", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ad049d97c1b4b5e4deb153a48373eeb5", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c93532819dc947080051c24993c97c28", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "95317285-ae68-472e-b4e6-c46667e3886b", + "apim-request-id": "c6f5a63c-1960-4adb-ac91-4d1e095f5795", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:03:45 GMT", + "Date": "Tue, 29 Jun 2021 19:14:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "130" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "145" }, "ResponseBody": { - "jobId": "6eeb0fab-7f6c-4aa4-94a3-6a39341364d1", - "lastUpdateDateTime": "2021-05-27T18:03:44Z", - "createdDateTime": "2021-05-27T18:03:04Z", - "expirationDateTime": "2021-05-28T18:03:04Z", + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:03:44Z" - }, - "completed": 4, + "completed": 3, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:03:44.9943096Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "taskName": "NamedEntityRecognition_latest", "state": "succeeded", "results": { "documents": [ @@ -1845,28 +11504,28 @@ "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": [] @@ -1879,7 +11538,7 @@ "category": "Organization", "offset": 0, "length": 5, - "confidenceScore": 0.95 + "confidenceScore": 0.98 }, { "text": "400%", @@ -1902,14 +11561,14 @@ } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:03:13.1823693Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -1993,8 +11652,8 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:03:32.3393857Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "taskName": "PersonallyIdentifiableInformation_latest", "state": "succeeded", "results": { "documents": [ @@ -2060,82 +11719,54 @@ "modelVersion": "2021-01-15" } } - ], - "keyPhraseExtractionTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:03:33.2721799Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "keyPhrases": [ - "CEO of SpaceX", - "Elon Musk", - "Tesla" - ], - "warnings": [] - }, - { - "id": "1", - "keyPhrases": [ - "Tesla stock", - "year" - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-07-01" - } - } ] } } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/6eeb0fab-7f6c-4aa4-94a3-6a39341364d1", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d10fa612eb462a4252e6a40a143d1fe0", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df65ccde151f9157858d0b610ed7d724", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c1c46df4-ecd0-429c-a7d6-0218fb20b96c", + "apim-request-id": "e43e4a4d-2671-420a-8189-acbd2d3c1992", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:03:47 GMT", + "Date": "Tue, 29 Jun 2021 19:14:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "124" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "171" }, "ResponseBody": { - "jobId": "6eeb0fab-7f6c-4aa4-94a3-6a39341364d1", - "lastUpdateDateTime": "2021-05-27T18:03:44Z", - "createdDateTime": "2021-05-27T18:03:04Z", - "expirationDateTime": "2021-05-28T18:03:04Z", + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:03:44Z" - }, - "completed": 4, + "completed": 3, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:03:44.9943096Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "taskName": "NamedEntityRecognition_latest", "state": "succeeded", "results": { "documents": [ @@ -2147,28 +11778,28 @@ "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": [] @@ -2181,7 +11812,7 @@ "category": "Organization", "offset": 0, "length": 5, - "confidenceScore": 0.95 + "confidenceScore": 0.98 }, { "text": "400%", @@ -2204,14 +11835,14 @@ } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:03:13.1823693Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -2295,8 +11926,8 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:03:32.3393857Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "taskName": "PersonallyIdentifiableInformation_latest", "state": "succeeded", "results": { "documents": [ @@ -2362,82 +11993,54 @@ "modelVersion": "2021-01-15" } } - ], - "keyPhraseExtractionTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:03:33.2721799Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "keyPhrases": [ - "CEO of SpaceX", - "Elon Musk", - "Tesla" - ], - "warnings": [] - }, - { - "id": "1", - "keyPhrases": [ - "Tesla stock", - "year" - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-07-01" - } - } ] } } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/6eeb0fab-7f6c-4aa4-94a3-6a39341364d1", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1cc41c63fe9a4d4d58a7bfee3d177f40", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d7c86cb91f298840245fe6848148522a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "985f7678-92a0-4d5f-b268-59b6d5d1be3f", + "apim-request-id": "6d8e1f58-b0cf-41db-8f42-51d953aa681a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:03:48 GMT", + "Date": "Tue, 29 Jun 2021 19:14:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "177" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "235" }, "ResponseBody": { - "jobId": "6eeb0fab-7f6c-4aa4-94a3-6a39341364d1", - "lastUpdateDateTime": "2021-05-27T18:03:44Z", - "createdDateTime": "2021-05-27T18:03:04Z", - "expirationDateTime": "2021-05-28T18:03:04Z", + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:03:44Z" - }, - "completed": 4, + "completed": 3, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:03:44.9943096Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "taskName": "NamedEntityRecognition_latest", "state": "succeeded", "results": { "documents": [ @@ -2449,28 +12052,28 @@ "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": [] @@ -2483,7 +12086,7 @@ "category": "Organization", "offset": 0, "length": 5, - "confidenceScore": 0.95 + "confidenceScore": 0.98 }, { "text": "400%", @@ -2506,14 +12109,14 @@ } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:03:13.1823693Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -2597,8 +12200,8 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:03:32.3393857Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "taskName": "PersonallyIdentifiableInformation_latest", "state": "succeeded", "results": { "documents": [ @@ -2664,82 +12267,54 @@ "modelVersion": "2021-01-15" } } - ], - "keyPhraseExtractionTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:03:33.2721799Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "keyPhrases": [ - "CEO of SpaceX", - "Elon Musk", - "Tesla" - ], - "warnings": [] - }, - { - "id": "1", - "keyPhrases": [ - "Tesla stock", - "year" - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-07-01" - } - } ] } } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/6eeb0fab-7f6c-4aa4-94a3-6a39341364d1", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "20028a80cf77acc85bd95bce1ddaa0a1", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b1f8540f0546bd9daa3443b92a73828", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7761ea10-2e3f-497e-9471-d7de9a64541c", + "apim-request-id": "4d1ed687-c384-42fc-86f0-b179c59ca926", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:03:49 GMT", + "Date": "Tue, 29 Jun 2021 19:14:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "142" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "149" }, "ResponseBody": { - "jobId": "6eeb0fab-7f6c-4aa4-94a3-6a39341364d1", - "lastUpdateDateTime": "2021-05-27T18:03:44Z", - "createdDateTime": "2021-05-27T18:03:04Z", - "expirationDateTime": "2021-05-28T18:03:04Z", + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:13:38Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:03:44Z" - }, - "completed": 4, + "completed": 3, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:03:44.9943096Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "taskName": "NamedEntityRecognition_latest", "state": "succeeded", "results": { "documents": [ @@ -2751,28 +12326,28 @@ "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": [] @@ -2785,7 +12360,7 @@ "category": "Organization", "offset": 0, "length": 5, - "confidenceScore": 0.95 + "confidenceScore": 0.98 }, { "text": "400%", @@ -2808,14 +12383,14 @@ } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:03:13.1823693Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -2899,8 +12474,8 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:03:32.3393857Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "taskName": "PersonallyIdentifiableInformation_latest", "state": "succeeded", "results": { "documents": [ @@ -2966,82 +12541,54 @@ "modelVersion": "2021-01-15" } } - ], - "keyPhraseExtractionTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:03:33.2721799Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "keyPhrases": [ - "CEO of SpaceX", - "Elon Musk", - "Tesla" - ], - "warnings": [] - }, - { - "id": "1", - "keyPhrases": [ - "Tesla stock", - "year" - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-07-01" - } - } ] } } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/6eeb0fab-7f6c-4aa4-94a3-6a39341364d1", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/1df56040-cf40-4ab2-bc1f-5c7489c8299a", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "66417292d2af141a58c2789f2b53ec3a", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "268f9d7aa401bffe8bddbabf2fd2103c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "02035670-f400-4d22-bb47-49c8821505e5", + "apim-request-id": "866933df-b80e-4dbd-af43-50ea676e0a23", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:03:50 GMT", + "Date": "Tue, 29 Jun 2021 19:14:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "152" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "268" }, "ResponseBody": { - "jobId": "6eeb0fab-7f6c-4aa4-94a3-6a39341364d1", - "lastUpdateDateTime": "2021-05-27T18:03:50Z", - "createdDateTime": "2021-05-27T18:03:04Z", - "expirationDateTime": "2021-05-28T18:03:04Z", + "jobId": "1df56040-cf40-4ab2-bc1f-5c7489c8299a", + "lastUpdateDateTime": "2021-06-29T19:14:23Z", + "createdDateTime": "2021-06-29T19:13:19Z", + "expirationDateTime": "2021-06-30T19:13:19Z", "status": "succeeded", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:03:50Z" - }, "completed": 5, "failed": 0, "inProgress": 0, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:03:44.9943096Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:13:38.0889308Z", + "taskName": "NamedEntityRecognition_latest", "state": "succeeded", "results": { "documents": [ @@ -3053,28 +12600,28 @@ "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": [] @@ -3087,7 +12634,7 @@ "category": "Organization", "offset": 0, "length": 5, - "confidenceScore": 0.95 + "confidenceScore": 0.98 }, { "text": "400%", @@ -3110,14 +12657,14 @@ } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:03:13.1823693Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:13:21.0243856Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -3201,8 +12748,8 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:03:32.3393857Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:13:27.4382918Z", + "taskName": "PersonallyIdentifiableInformation_latest", "state": "succeeded", "results": { "documents": [ @@ -3271,16 +12818,17 @@ ], "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:03:33.2721799Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:14:23.3296108Z", + "taskName": "KeyPhraseExtraction_latest", "state": "succeeded", "results": { "documents": [ { "id": "0", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -3288,21 +12836,20 @@ { "id": "1", "keyPhrases": [ - "Tesla stock", - "year" + "Tesla stock" ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2021-06-01" } } ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:03:50.9760771Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:14:23.2787212Z", + "taskName": "SentimentAnalysis_latest", "state": "succeeded", "results": { "documents": [ 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 0cddb946c9ca..75b25bae2452 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationAllActionsAndDisableServiceLogsAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationAllActionsAndDisableServiceLogsAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "657", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-22d151ba221644468a700f3050495d27-c7f5ec5fc959214c-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-a2d8d11b25f6a44280306f0e7d564067-6a37d9591bfdfd42-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cab6db40209658f86d8910a806e31bf5", "x-ms-return-client-request-id": "true" }, @@ -72,50 +72,46 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "c3a4d493-e0a8-4780-a4ca-3793f397e020", - "Date": "Thu, 27 May 2021 18:05:46 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", + "apim-request-id": "cc86be22-5537-4b14-9eaf-dd2a5ee81cb9", + "Date": "Tue, 29 Jun 2021 19:00:16 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "386" + "x-envoy-upstream-service-time": "454" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c47d34012245c090a781ad405351b093", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5f573c43-5449-4983-bbf4-33816d7a2685", + "apim-request-id": "50a24dbd-9c54-4b81-b626-8d543f0609a2", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:05:46 GMT", + "Date": "Tue, 29 Jun 2021 19:00: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": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:05:46Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", + "jobId": "417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", + "lastUpdateDateTime": "2021-06-29T19:00:16Z", + "createdDateTime": "2021-06-29T19:00:16Z", + "expirationDateTime": "2021-06-30T19:00:16Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:05:46Z" - }, "completed": 0, "failed": 0, "inProgress": 5, @@ -124,88 +120,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a9595244f4c07851c15dba6c4a69457a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "881f0a12-7997-4219-8f4f-c1c458f3c39d", + "apim-request-id": "269f42d5-3fa7-4201-a36f-ae76aaf96f9c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:05:47 GMT", + "Date": "Tue, 29 Jun 2021 19:00:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "49" }, "ResponseBody": { - "jobId": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:05:47Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", + "jobId": "417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", + "lastUpdateDateTime": "2021-06-29T19:00:17Z", + "createdDateTime": "2021-06-29T19:00:16Z", + "expirationDateTime": "2021-06-30T19:00:16Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:05:47Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 5, - "total": 5 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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": "bbfc598e-45ba-4662-a542-c9b361870144", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:05:48 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": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:05:47Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:05:47Z" - }, "completed": 1, "failed": 0, "inProgress": 4, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:17.2531906Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -291,47 +242,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b3637dd8728a0c34e20502e76723763e", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d93f0294486e1eee4bf5221573b8041c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a15be731-076d-4824-a077-a3f248a4856a", + "apim-request-id": "b6bc0837-734e-4a1e-a810-4e2384c39bad", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:05:49 GMT", + "Date": "Tue, 29 Jun 2021 19:00:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "151" + "x-envoy-upstream-service-time": "120" }, "ResponseBody": { - "jobId": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:05:47Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", + "jobId": "417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", + "lastUpdateDateTime": "2021-06-29T19:00:17Z", + "createdDateTime": "2021-06-29T19:00:16Z", + "expirationDateTime": "2021-06-30T19:00:16Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:05:47Z" - }, "completed": 1, "failed": 0, "inProgress": 4, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:17.2531906Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -417,47 +364,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "51ab323bd712fc24633a5ecbd13c0509", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b3637dd8728a0c34e20502e76723763e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "25f157d8-e9a1-450e-929e-b7daa5cd25c1", + "apim-request-id": "82026db2-e9ec-40a7-a65c-40be4dc51624", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:05:50 GMT", + "Date": "Tue, 29 Jun 2021 19:00:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "54" + "x-envoy-upstream-service-time": "75" }, "ResponseBody": { - "jobId": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:05:47Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", + "jobId": "417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", + "lastUpdateDateTime": "2021-06-29T19:00:19Z", + "createdDateTime": "2021-06-29T19:00:16Z", + "expirationDateTime": "2021-06-30T19:00:16Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:05:47Z" - }, "completed": 1, "failed": 0, "inProgress": 4, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:17.2531906Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -543,47 +486,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "cd939e58910622f0ce32f6694507b627", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "51ab323bd712fc24633a5ecbd13c0509", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "63e30157-ed1f-4067-8465-25b7d30138d8", + "apim-request-id": "55fe0361-1573-46ae-b465-b5db5db47983", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:05:52 GMT", + "Date": "Tue, 29 Jun 2021 19:00:21 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": "52" }, "ResponseBody": { - "jobId": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:05:47Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", + "jobId": "417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", + "lastUpdateDateTime": "2021-06-29T19:00:19Z", + "createdDateTime": "2021-06-29T19:00:16Z", + "expirationDateTime": "2021-06-30T19:00:16Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:05:47Z" - }, "completed": 1, "failed": 0, "inProgress": 4, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:17.2531906Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -669,47 +608,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "41d9e47eb30c01095867504f14693aa6", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cd939e58910622f0ce32f6694507b627", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7b9b17b8-4a75-4938-82a8-5b6416cc5f4d", + "apim-request-id": "626f6dba-f225-40ae-9a97-c3c5cf51886b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:05:53 GMT", + "Date": "Tue, 29 Jun 2021 19:00:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "77" }, "ResponseBody": { - "jobId": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:05:47Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", + "jobId": "417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", + "lastUpdateDateTime": "2021-06-29T19:00:19Z", + "createdDateTime": "2021-06-29T19:00:16Z", + "expirationDateTime": "2021-06-30T19:00:16Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:05:47Z" - }, "completed": 1, "failed": 0, "inProgress": 4, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:17.2531906Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -795,47 +730,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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.1.0-alpha.20210629.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": "edb94168-74ac-4e0f-92c0-abdd8b3a1aca", + "apim-request-id": "2d9d12a6-932d-486f-9207-257057b78005", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:05:54 GMT", + "Date": "Tue, 29 Jun 2021 19:00:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-envoy-upstream-service-time": "158" }, "ResponseBody": { - "jobId": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:05:47Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", + "jobId": "417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", + "lastUpdateDateTime": "2021-06-29T19:00:23Z", + "createdDateTime": "2021-06-29T19:00:16Z", + "expirationDateTime": "2021-06-30T19:00:16Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:05:47Z" - }, - "completed": 1, + "completed": 3, "failed": 0, - "inProgress": 4, + "inProgress": 2, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:17.2531906Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -916,52 +847,137 @@ "modelVersion": "2020-02-01" } } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:00:23.7868747Z", + "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" + } + } + ], + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:00:22.9867464Z", + "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.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c98ef900a98fa938418982dfe0bbb65c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2e263078-efeb-4080-b512-e84bf625e2e0", + "apim-request-id": "27cf6d91-6f4e-4592-a9b6-63c6fdee63aa", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:05:55 GMT", + "Date": "Tue, 29 Jun 2021 19:00:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-envoy-upstream-service-time": "327" }, "ResponseBody": { - "jobId": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:05:47Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", + "jobId": "417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", + "lastUpdateDateTime": "2021-06-29T19:00:23Z", + "createdDateTime": "2021-06-29T19:00:16Z", + "expirationDateTime": "2021-06-30T19:00:16Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:05:47Z" - }, - "completed": 1, + "completed": 3, "failed": 0, - "inProgress": 4, + "inProgress": 2, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:17.2531906Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -1042,52 +1058,137 @@ "modelVersion": "2020-02-01" } } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:00:23.7868747Z", + "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" + } + } + ], + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:00:22.9867464Z", + "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.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ed4c3684c462a5fd9492749f41a10d64", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "696b3c42-6b69-446e-a33c-27f7ce55a248", + "apim-request-id": "39dd9c3d-9461-4315-a5d6-404236ffa23f", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:05:56 GMT", + "Date": "Tue, 29 Jun 2021 19:00:25 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": "234" }, "ResponseBody": { - "jobId": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:05:47Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", + "jobId": "417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", + "lastUpdateDateTime": "2021-06-29T19:00:25Z", + "createdDateTime": "2021-06-29T19:00:16Z", + "expirationDateTime": "2021-06-30T19:00:16Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:05:47Z" - }, - "completed": 1, + "completed": 4, "failed": 0, - "inProgress": 4, + "inProgress": 1, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:17.2531906Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -1168,6044 +1269,16 @@ "modelVersion": "2020-02-01" } } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ddcaf4b04d1d3c43fbe934fd3598689f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0fb4910e-0eab-4d92-9b76-1aeab9d2c3cc", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:05:57 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": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:05:47Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:05:47Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 4, - "total": 5, - "entityLinkingTasks": [ + ], + "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:25.2434671Z", + "taskName": "PersonallyIdentifiableInformation_latest", "state": "succeeded", "results": { "documents": [ { - "id": "0", - "entities": [ - { - "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" - }, - { - "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" - }, - { - "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": [ - { - "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": "2020-02-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "90e61d7b6a5298e39e764032c4797369", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d7050fdc-7ad7-4836-aecb-e9001db17e23", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:05:58 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": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:05:47Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:05:47Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 4, - "total": 5, - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "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" - }, - { - "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" - }, - { - "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": [ - { - "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": "2020-02-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4ceed6702fd7aa470c2c508fb79aa013", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "aedcac68-fd5e-4270-865c-ac50d7e67eb3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:05:59 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": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:05:47Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:05:47Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 4, - "total": 5, - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "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" - }, - { - "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" - }, - { - "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": [ - { - "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": "2020-02-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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": "49f11677-7892-46fc-aa40-be20df61337d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:00 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": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:05:47Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:05:47Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 4, - "total": 5, - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "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" - }, - { - "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" - }, - { - "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": [ - { - "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": "2020-02-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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": "90fe7bf2-8f49-45b2-86ee-b0b091419d99", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:01 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": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:05:47Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:05:47Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 4, - "total": 5, - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "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" - }, - { - "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" - }, - { - "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": [ - { - "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": "2020-02-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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": "4110111f-6976-4603-abfe-40d65cacf706", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:03 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "42" - }, - "ResponseBody": { - "jobId": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:05:47Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:05:47Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 4, - "total": 5, - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "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" - }, - { - "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" - }, - { - "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": [ - { - "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": "2020-02-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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": "8d7730d6-21c5-411f-84b1-67fb5eed9556", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:04 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": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:05:47Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:05:47Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 4, - "total": 5, - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "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" - }, - { - "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" - }, - { - "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": [ - { - "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": "2020-02-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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": "0f579be7-c269-4f93-b60b-712c273e71a2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:05 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "92" - }, - "ResponseBody": { - "jobId": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:06:04Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:06:04Z" - }, - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "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" - }, - { - "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" - }, - { - "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": [ - { - "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": "2020-02-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:06:04.9467787Z", - "name": "NA", - "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.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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": "e5fedd52-1f3d-46f6-a97c-f3b0945ac96a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:06 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": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:06:04Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:06:04Z" - }, - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "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" - }, - { - "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" - }, - { - "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": [ - { - "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": "2020-02-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:06:04.9467787Z", - "name": "NA", - "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.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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": "b9f3beb7-68ab-4b6d-ae3c-a02e753a573d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:07 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": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:06:04Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:06:04Z" - }, - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "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" - }, - { - "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" - }, - { - "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": [ - { - "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": "2020-02-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:06:04.9467787Z", - "name": "NA", - "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.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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": "23c08ba4-ee3e-416e-80c6-3a4bfcf95707", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:08 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": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:06:04Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:06:04Z" - }, - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "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" - }, - { - "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" - }, - { - "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": [ - { - "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": "2020-02-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:06:04.9467787Z", - "name": "NA", - "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.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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": "14d26063-5dae-4c48-ba82-f196e3e9875b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:09 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": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:06:04Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:06:04Z" - }, - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "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" - }, - { - "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" - }, - { - "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": [ - { - "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": "2020-02-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:06:04.9467787Z", - "name": "NA", - "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.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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": "74b7c019-3da2-4989-bb5f-afb9c7a9132c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:10 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": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:06:04Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:06:04Z" - }, - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "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" - }, - { - "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" - }, - { - "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": [ - { - "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": "2020-02-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:06:04.9467787Z", - "name": "NA", - "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.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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": "85a4d8af-954e-4447-8cfa-8bbb7dee0a4a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:11 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": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:06:04Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:06:04Z" - }, - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "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" - }, - { - "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" - }, - { - "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": [ - { - "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": "2020-02-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:06:04.9467787Z", - "name": "NA", - "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.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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": "7a550f01-86ce-49e4-9319-2e18b84c6e42", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:12 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": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:06:04Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:06:04Z" - }, - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "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" - }, - { - "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" - }, - { - "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": [ - { - "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": "2020-02-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:06:04.9467787Z", - "name": "NA", - "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.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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": "fa464805-56b1-477e-ba65-27bbf7603235", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:14 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "94" - }, - "ResponseBody": { - "jobId": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:06:04Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:06:04Z" - }, - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "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" - }, - { - "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" - }, - { - "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": [ - { - "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": "2020-02-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:06:04.9467787Z", - "name": "NA", - "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.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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": "d7883525-4238-4659-957e-9cd0b0df71e9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:15 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": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:06:04Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:06:04Z" - }, - "completed": 2, - "failed": 0, - "inProgress": 3, - "total": 5, - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "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" - }, - { - "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" - }, - { - "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": [ - { - "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": "2020-02-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:06:04.9467787Z", - "name": "NA", - "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.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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": "03bda01d-538f-43b2-8866-194defb8577b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:16 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": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:06:16Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:06:16Z" - }, - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "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" - }, - { - "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" - }, - { - "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": [ - { - "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": "2020-02-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:06:04.9467787Z", - "name": "NA", - "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-05-27T18:06:16.786568Z", - "name": "NA", - "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.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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": "c61d7784-f968-4e72-ac3e-31ab387e782b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:17 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "152" - }, - "ResponseBody": { - "jobId": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:06:16Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:06:16Z" - }, - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "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" - }, - { - "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" - }, - { - "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": [ - { - "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": "2020-02-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:06:04.9467787Z", - "name": "NA", - "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-05-27T18:06:16.786568Z", - "name": "NA", - "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.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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": "832f1215-895f-4a65-a9bf-bda2829ec7ee", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:23 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5150" - }, - "ResponseBody": { - "jobId": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:06:16Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:06:16Z" - }, - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "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" - }, - { - "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" - }, - { - "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": [ - { - "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": "2020-02-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:06:04.9467787Z", - "name": "NA", - "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-05-27T18:06:16.786568Z", - "name": "NA", - "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.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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": "935165f9-74f3-47ca-adbb-48483a79c73c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:32 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7765" - }, - "ResponseBody": { - "jobId": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:06:16Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:06:16Z" - }, - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "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" - }, - { - "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" - }, - { - "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": [ - { - "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": "2020-02-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:06:04.9467787Z", - "name": "NA", - "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-05-27T18:06:16.786568Z", - "name": "NA", - "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.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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": "988979a7-43ba-4ad6-b7b9-67b9825c5930", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:34 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "176" - }, - "ResponseBody": { - "jobId": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:06:16Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:06:16Z" - }, - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "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" - }, - { - "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" - }, - { - "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": [ - { - "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": "2020-02-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:06:04.9467787Z", - "name": "NA", - "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-05-27T18:06:16.786568Z", - "name": "NA", - "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.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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": "775662de-5a8d-4786-ac56-df57cb57a5f2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:35 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "102" - }, - "ResponseBody": { - "jobId": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:06:16Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:06:16Z" - }, - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "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" - }, - { - "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" - }, - { - "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": [ - { - "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": "2020-02-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:06:04.9467787Z", - "name": "NA", - "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-05-27T18:06:16.786568Z", - "name": "NA", - "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.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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": "bab30faa-a382-4cc6-8322-9e71141113d9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:36 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "95" - }, - "ResponseBody": { - "jobId": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:06:16Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:06:16Z" - }, - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "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" - }, - { - "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" - }, - { - "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": [ - { - "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": "2020-02-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:06:04.9467787Z", - "name": "NA", - "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-05-27T18:06:16.786568Z", - "name": "NA", - "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.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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": "3539ab86-1291-42ac-bddc-e5980eb67a72", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:37 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": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:06:16Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:06:16Z" - }, - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "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" - }, - { - "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" - }, - { - "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": [ - { - "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": "2020-02-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:06:04.9467787Z", - "name": "NA", - "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-05-27T18:06:16.786568Z", - "name": "NA", - "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.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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": "d00a2c28-8acb-4865-8062-1791dae8a717", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:39 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "106" - }, - "ResponseBody": { - "jobId": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:06:16Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:06:16Z" - }, - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "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" - }, - { - "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" - }, - { - "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": [ - { - "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": "2020-02-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:06:04.9467787Z", - "name": "NA", - "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-05-27T18:06:16.786568Z", - "name": "NA", - "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.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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": "8af24a2a-c32b-4b31-a878-11eae723af67", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:40 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": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:06:16Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:06:16Z" - }, - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "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" - }, - { - "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" - }, - { - "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": [ - { - "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": "2020-02-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:06:04.9467787Z", - "name": "NA", - "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-05-27T18:06:16.786568Z", - "name": "NA", - "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.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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": "169aaa47-e8e8-40c9-97b5-f99e83992581", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:41 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": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:06:16Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:06:16Z" - }, - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "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" - }, - { - "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" - }, - { - "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": [ - { - "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": "2020-02-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:06:04.9467787Z", - "name": "NA", - "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-05-27T18:06:16.786568Z", - "name": "NA", - "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.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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": "6f1a5ef5-2471-48fd-936f-1c5dbbf30b82", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:42 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "108" - }, - "ResponseBody": { - "jobId": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:06:16Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:06:16Z" - }, - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "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" - }, - { - "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" - }, - { - "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": [ - { - "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": "2020-02-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:06:04.9467787Z", - "name": "NA", - "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-05-27T18:06:16.786568Z", - "name": "NA", - "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.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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": "abfafdf8-7fff-4df1-976d-0cf6fe0761ae", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:43 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "102" - }, - "ResponseBody": { - "jobId": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:06:16Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:06:16Z" - }, - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "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" - }, - { - "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" - }, - { - "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": [ - { - "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": "2020-02-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:06:04.9467787Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "redactedText": "********* is the *** of ****** and *****.", + "redactedText": "********* is the *** of ****** and *****.", "id": "0", "entities": [ { @@ -7267,10 +1340,40 @@ } } ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:00:23.7868747Z", + "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" + } + } + ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:06:16.786568Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:22.9867464Z", + "taskName": "SentimentAnalysis_latest", "state": "succeeded", "results": { "documents": [ @@ -7330,47 +1433,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ed84388f58e7f4a60822594f07844599", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4c6850f8ec78d598ac2fff83312a219d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "28b14678-5aaf-4c1a-8c44-c63130db754e", + "apim-request-id": "ad4dd524-d7a5-42ce-86bd-efe511a245ec", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:44 GMT", + "Date": "Tue, 29 Jun 2021 19:00:27 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": "179" }, "ResponseBody": { - "jobId": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:06:16Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", + "jobId": "417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", + "lastUpdateDateTime": "2021-06-29T19:00:25Z", + "createdDateTime": "2021-06-29T19:00:16Z", + "expirationDateTime": "2021-06-30T19:00:16Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:06:16Z" - }, - "completed": 3, + "completed": 4, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:17.2531906Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -7454,8 +1553,8 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:06:04.9467787Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:25.2434671Z", + "taskName": "PersonallyIdentifiableInformation_latest", "state": "succeeded", "results": { "documents": [ @@ -7522,265 +1621,40 @@ } } ], - "sentimentAnalysisTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:06:16.786568Z", - "name": "NA", - "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.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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": "10bbed43-dbf9-470d-bceb-6b4d194a4636", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:45 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": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:06:16Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:06:16Z" - }, - "completed": 3, - "failed": 0, - "inProgress": 2, - "total": 5, - "entityLinkingTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "id": "0", - "entities": [ - { - "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" - }, - { - "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" - }, - { - "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": [ - { - "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": "2020-02-01" - } - } - ], - "entityRecognitionPiiTasks": [ + "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:06:04.9467787Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:23.7868747Z", + "taskName": "KeyPhraseExtraction_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 - } + "keyPhrases": [ + "Elon Musk", + "CEO", + "SpaceX", + "Tesla" ], "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 - } + "keyPhrases": [ + "Tesla stock" ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:06:16.786568Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:22.9867464Z", + "taskName": "SentimentAnalysis_latest", "state": "succeeded", "results": { "documents": [ @@ -7840,47 +1714,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ddcaf4b04d1d3c43fbe934fd3598689f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5830b5db-b4c8-4b4e-86b5-fe83221e5845", + "apim-request-id": "2c935601-4c08-4f17-8050-08cfed158dad", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:47 GMT", + "Date": "Tue, 29 Jun 2021 19:00:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "98" + "x-envoy-upstream-service-time": "244" }, "ResponseBody": { - "jobId": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:06:46Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", + "jobId": "417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", + "lastUpdateDateTime": "2021-06-29T19:00:25Z", + "createdDateTime": "2021-06-29T19:00:16Z", + "expirationDateTime": "2021-06-30T19:00:16Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:06:46Z" - }, - "completed": 3, + "completed": 4, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:17.2531906Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -7964,8 +1834,8 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:06:04.9467787Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:25.2434671Z", + "taskName": "PersonallyIdentifiableInformation_latest", "state": "succeeded", "results": { "documents": [ @@ -8032,10 +1902,40 @@ } } ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:00:23.7868747Z", + "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" + } + } + ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:06:16.786568Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:22.9867464Z", + "taskName": "SentimentAnalysis_latest", "state": "succeeded", "results": { "documents": [ @@ -8095,47 +1995,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "90e61d7b6a5298e39e764032c4797369", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f65bc72f-b3f1-4340-8857-e6b28e8ce72b", + "apim-request-id": "104376fc-32c1-4ac1-a5c0-fa860941b14f", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:48 GMT", + "Date": "Tue, 29 Jun 2021 19:00:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "128" + "x-envoy-upstream-service-time": "209" }, "ResponseBody": { - "jobId": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:06:46Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", + "jobId": "417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", + "lastUpdateDateTime": "2021-06-29T19:00:25Z", + "createdDateTime": "2021-06-29T19:00:16Z", + "expirationDateTime": "2021-06-30T19:00:16Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:06:46Z" - }, - "completed": 3, + "completed": 4, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:17.2531906Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -8219,8 +2115,8 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:06:04.9467787Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:25.2434671Z", + "taskName": "PersonallyIdentifiableInformation_latest", "state": "succeeded", "results": { "documents": [ @@ -8287,10 +2183,40 @@ } } ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:00:23.7868747Z", + "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" + } + } + ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:06:16.786568Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:22.9867464Z", + "taskName": "SentimentAnalysis_latest", "state": "succeeded", "results": { "documents": [ @@ -8350,47 +2276,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4ceed6702fd7aa470c2c508fb79aa013", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f539c4b9-25b5-4aac-9df3-8db00324ef74", + "apim-request-id": "862c745a-a25b-4130-b2be-5e0dd33609a2", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:49 GMT", + "Date": "Tue, 29 Jun 2021 19:00:31 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": "345" }, "ResponseBody": { - "jobId": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:06:46Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", + "jobId": "417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", + "lastUpdateDateTime": "2021-06-29T19:00:25Z", + "createdDateTime": "2021-06-29T19:00:16Z", + "expirationDateTime": "2021-06-30T19:00:16Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:06:46Z" - }, - "completed": 3, + "completed": 4, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:17.2531906Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -8474,8 +2396,8 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:06:04.9467787Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:25.2434671Z", + "taskName": "PersonallyIdentifiableInformation_latest", "state": "succeeded", "results": { "documents": [ @@ -8542,10 +2464,40 @@ } } ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:00:23.7868747Z", + "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" + } + } + ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:06:16.786568Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:22.9867464Z", + "taskName": "SentimentAnalysis_latest", "state": "succeeded", "results": { "documents": [ @@ -8605,47 +2557,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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.1.0-alpha.20210629.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": "5a80a5ce-704b-457c-b9a9-74e8276da46b", + "apim-request-id": "67a1a747-df2c-4b71-9e9d-04f90a8ee190", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:50 GMT", + "Date": "Tue, 29 Jun 2021 19:00:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "88" + "x-envoy-upstream-service-time": "178" }, "ResponseBody": { - "jobId": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:06:46Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", + "jobId": "417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", + "lastUpdateDateTime": "2021-06-29T19:00:25Z", + "createdDateTime": "2021-06-29T19:00:16Z", + "expirationDateTime": "2021-06-30T19:00:16Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:06:46Z" - }, - "completed": 3, + "completed": 4, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:17.2531906Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -8729,8 +2677,8 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:06:04.9467787Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:25.2434671Z", + "taskName": "PersonallyIdentifiableInformation_latest", "state": "succeeded", "results": { "documents": [ @@ -8797,10 +2745,40 @@ } } ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:00:23.7868747Z", + "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" + } + } + ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:06:16.786568Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:22.9867464Z", + "taskName": "SentimentAnalysis_latest", "state": "succeeded", "results": { "documents": [ @@ -8860,47 +2838,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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.1.0-alpha.20210629.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": "64c9f585-394d-4d32-84e1-5a44a54607b2", + "apim-request-id": "7940a600-1fd9-445a-8fdb-442d1a843b54", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:51 GMT", + "Date": "Tue, 29 Jun 2021 19:00:34 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": "188" }, "ResponseBody": { - "jobId": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:06:46Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", + "jobId": "417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", + "lastUpdateDateTime": "2021-06-29T19:00:25Z", + "createdDateTime": "2021-06-29T19:00:16Z", + "expirationDateTime": "2021-06-30T19:00:16Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:06:46Z" - }, - "completed": 3, + "completed": 4, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:17.2531906Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -8984,8 +2958,8 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:06:04.9467787Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:25.2434671Z", + "taskName": "PersonallyIdentifiableInformation_latest", "state": "succeeded", "results": { "documents": [ @@ -9052,10 +3026,40 @@ } } ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:00:23.7868747Z", + "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" + } + } + ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:06:16.786568Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:22.9867464Z", + "taskName": "SentimentAnalysis_latest", "state": "succeeded", "results": { "documents": [ @@ -9115,123 +3119,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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.1.0-alpha.20210629.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": "605a3b46-6018-419d-b4e0-beb6968bcc44", + "apim-request-id": "7673eaf2-bf4e-4201-b101-2c4558da4100", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:52 GMT", + "Date": "Tue, 29 Jun 2021 19:00:35 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": "172" }, "ResponseBody": { - "jobId": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:06:52Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", + "jobId": "417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", + "lastUpdateDateTime": "2021-06-29T19:00:25Z", + "createdDateTime": "2021-06-29T19:00:16Z", + "expirationDateTime": "2021-06-30T19:00:16Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:06:52Z" - }, "completed": 4, "failed": 0, "inProgress": 1, "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-05-27T18:06:52.1747022Z", - "name": "NA", - "state": "succeeded", - "results": { - "documents": [ - { - "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": [] - }, - { - "id": "1", - "entities": [ - { - "text": "Tesla", - "category": "Organization", - "offset": 0, - "length": 5, - "confidenceScore": 0.95 - }, - { - "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-01-15" - } - } - ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:17.2531906Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -9315,8 +3239,8 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:06:04.9467787Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:25.2434671Z", + "taskName": "PersonallyIdentifiableInformation_latest", "state": "succeeded", "results": { "documents": [ @@ -9383,10 +3307,40 @@ } } ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:00:23.7868747Z", + "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" + } + } + ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:06:16.786568Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:22.9867464Z", + "taskName": "SentimentAnalysis_latest", "state": "succeeded", "results": { "documents": [ @@ -9446,47 +3400,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/aefec431-b644-4aa8-afed-0c06c53091b0", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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.1.0-alpha.20210629.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": "e4fde8d7-50a3-40a0-87f3-e519b6fab796", + "apim-request-id": "047a64eb-7fa1-4bb5-99d0-4adfb61fa629", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:54 GMT", + "Date": "Tue, 29 Jun 2021 19:00:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "254" + "x-envoy-upstream-service-time": "261" }, "ResponseBody": { - "jobId": "aefec431-b644-4aa8-afed-0c06c53091b0", - "lastUpdateDateTime": "2021-05-27T18:06:53Z", - "createdDateTime": "2021-05-27T18:05:46Z", - "expirationDateTime": "2021-05-28T18:05:46Z", + "jobId": "417a7e4f-41d6-42bc-a52d-2f4bcd4d6510", + "lastUpdateDateTime": "2021-06-29T19:00:36Z", + "createdDateTime": "2021-06-29T19:00:16Z", + "expirationDateTime": "2021-06-30T19:00:16Z", "status": "succeeded", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:06:53Z" - }, "completed": 5, "failed": 0, "inProgress": 0, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:06:52.1747022Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:36.2439709Z", + "taskName": "NamedEntityRecognition_latest", "state": "succeeded", "results": { "documents": [ @@ -9498,28 +3448,28 @@ "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": [] @@ -9532,7 +3482,7 @@ "category": "Organization", "offset": 0, "length": 5, - "confidenceScore": 0.95 + "confidenceScore": 0.98 }, { "text": "400%", @@ -9555,14 +3505,14 @@ } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:05:47.6648248Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:17.2531906Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -9646,8 +3596,8 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:06:04.9467787Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:25.2434671Z", + "taskName": "PersonallyIdentifiableInformation_latest", "state": "succeeded", "results": { "documents": [ @@ -9716,16 +3666,17 @@ ], "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:06:53.8894049Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:23.7868747Z", + "taskName": "KeyPhraseExtraction_latest", "state": "succeeded", "results": { "documents": [ { "id": "0", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -9733,21 +3684,20 @@ { "id": "1", "keyPhrases": [ - "Tesla stock", - "year" + "Tesla stock" ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2021-06-01" } } ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:06:16.786568Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:00:22.9867464Z", + "taskName": "SentimentAnalysis_latest", "state": "succeeded", "results": { "documents": [ 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 ca092d42f146..a257e45ac3d5 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.1-preview.5/analyze", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "304", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-efa7d0c9ae7c804fa91c15d1695c3dc2-4c9576f6086ee247-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-1e44fb6598f12c4da860d9eb75a32810-03094b6ccfcb494c-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "aeed755eebf15dfbf87891ec623be508", "x-ms-return-client-request-id": "true" }, @@ -37,50 +43,52 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "07c9ebc4-ec29-4733-8275-e3603acf61dd", - "Date": "Thu, 27 May 2021 18:03:51 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/75d0270b-a6cb-47f2-abc9-6546c01d6b72", + "apim-request-id": "0c592413-acb7-4ef5-a982-3d7f475d42d5", + "Date": "Tue, 29 Jun 2021 19:14:27 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "125" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "2864" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/75d0270b-a6cb-47f2-abc9-6546c01d6b72", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "5b40ed71-229e-4e14-be9f-7f189dd97c62", + "apim-request-id": "8dd3e35a-85ee-4dd4-909c-35c97180f348", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:03:51 GMT", + "Date": "Tue, 29 Jun 2021 19:14:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "75d0270b-a6cb-47f2-abc9-6546c01d6b72", - "lastUpdateDateTime": "2021-05-27T18:03:52Z", - "createdDateTime": "2021-05-27T18:03:51Z", - "expirationDateTime": "2021-05-28T18:03:51Z", - "status": "notStarted", + "jobId": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", + "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:03:52Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -89,39 +97,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/75d0270b-a6cb-47f2-abc9-6546c01d6b72", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "2555648c-594a-4f18-b70b-1ddf75f9b25e", + "apim-request-id": "6ec8903e-20e4-40c5-bead-38e251139260", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:03:52 GMT", + "Date": "Tue, 29 Jun 2021 19:14:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { - "jobId": "75d0270b-a6cb-47f2-abc9-6546c01d6b72", - "lastUpdateDateTime": "2021-05-27T18:03:53Z", - "createdDateTime": "2021-05-27T18:03:51Z", - "expirationDateTime": "2021-05-28T18:03:51Z", + "jobId": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:03:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -130,39 +140,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/75d0270b-a6cb-47f2-abc9-6546c01d6b72", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "e3ecd642-6b41-4b7c-925d-0347952da163", + "apim-request-id": "2d3ccc76-e8c1-49e7-9bb9-940ab58aa608", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:03:54 GMT", + "Date": "Tue, 29 Jun 2021 19:14:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "75d0270b-a6cb-47f2-abc9-6546c01d6b72", - "lastUpdateDateTime": "2021-05-27T18:03:53Z", - "createdDateTime": "2021-05-27T18:03:51Z", - "expirationDateTime": "2021-05-28T18:03:51Z", + "jobId": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:03:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -171,39 +183,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/75d0270b-a6cb-47f2-abc9-6546c01d6b72", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "620a9241-3a6b-4faa-889f-d1e3bcf0d346", + "apim-request-id": "18be19e7-8dab-459e-a5bc-ebe88731e1e3", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:03:55 GMT", + "Date": "Tue, 29 Jun 2021 19:14:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "75d0270b-a6cb-47f2-abc9-6546c01d6b72", - "lastUpdateDateTime": "2021-05-27T18:03:53Z", - "createdDateTime": "2021-05-27T18:03:51Z", - "expirationDateTime": "2021-05-28T18:03:51Z", + "jobId": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:03:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -212,39 +226,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/75d0270b-a6cb-47f2-abc9-6546c01d6b72", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "372018a6-4b41-4fd6-9530-167538ee1c33", + "apim-request-id": "2a3e2c42-343b-4706-b83d-f81d23a3389c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:03:56 GMT", + "Date": "Tue, 29 Jun 2021 19:14:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { - "jobId": "75d0270b-a6cb-47f2-abc9-6546c01d6b72", - "lastUpdateDateTime": "2021-05-27T18:03:53Z", - "createdDateTime": "2021-05-27T18:03:51Z", - "expirationDateTime": "2021-05-28T18:03:51Z", + "jobId": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:03:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -253,39 +269,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/75d0270b-a6cb-47f2-abc9-6546c01d6b72", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "23eaceb2-72fa-4b42-ba6e-a546dd81f11f", + "apim-request-id": "7cacfc59-00de-475b-be83-591c5289fdd4", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:03:57 GMT", + "Date": "Tue, 29 Jun 2021 19:14:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { - "jobId": "75d0270b-a6cb-47f2-abc9-6546c01d6b72", - "lastUpdateDateTime": "2021-05-27T18:03:53Z", - "createdDateTime": "2021-05-27T18:03:51Z", - "expirationDateTime": "2021-05-28T18:03:51Z", + "jobId": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:03:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -294,39 +312,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/75d0270b-a6cb-47f2-abc9-6546c01d6b72", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "d6f239f8-0b67-4814-974b-aed2315fa813", + "apim-request-id": "9c76324f-3c36-435c-a127-9d4ebdeb3a6a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:03:58 GMT", + "Date": "Tue, 29 Jun 2021 19:14:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "75d0270b-a6cb-47f2-abc9-6546c01d6b72", - "lastUpdateDateTime": "2021-05-27T18:03:53Z", - "createdDateTime": "2021-05-27T18:03:51Z", - "expirationDateTime": "2021-05-28T18:03:51Z", + "jobId": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:03:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -335,39 +355,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/75d0270b-a6cb-47f2-abc9-6546c01d6b72", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "2f9daa1b-2c59-4c88-8e62-6b051fb21f43", + "apim-request-id": "18378895-9e8f-4827-8ea9-3a6b2a99b670", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:03:59 GMT", + "Date": "Tue, 29 Jun 2021 19:14:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "75d0270b-a6cb-47f2-abc9-6546c01d6b72", - "lastUpdateDateTime": "2021-05-27T18:03:53Z", - "createdDateTime": "2021-05-27T18:03:51Z", - "expirationDateTime": "2021-05-28T18:03:51Z", + "jobId": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:03:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -376,39 +398,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/75d0270b-a6cb-47f2-abc9-6546c01d6b72", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "b83d2973-8f9c-42bc-a5db-2610d5f39258", + "apim-request-id": "76ec8e60-35d1-415d-815e-3d0c2a5d7bcf", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:04:00 GMT", + "Date": "Tue, 29 Jun 2021 19:14: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": "11" }, "ResponseBody": { - "jobId": "75d0270b-a6cb-47f2-abc9-6546c01d6b72", - "lastUpdateDateTime": "2021-05-27T18:03:53Z", - "createdDateTime": "2021-05-27T18:03:51Z", - "expirationDateTime": "2021-05-28T18:03:51Z", + "jobId": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:03:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -417,39 +441,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/75d0270b-a6cb-47f2-abc9-6546c01d6b72", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "6dc20c00-37aa-4fef-a544-ab03e2230e90", + "apim-request-id": "76ae0734-f264-407f-8951-d19cba170a57", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:04:01 GMT", + "Date": "Tue, 29 Jun 2021 19:14: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": "10" }, "ResponseBody": { - "jobId": "75d0270b-a6cb-47f2-abc9-6546c01d6b72", - "lastUpdateDateTime": "2021-05-27T18:03:53Z", - "createdDateTime": "2021-05-27T18:03:51Z", - "expirationDateTime": "2021-05-28T18:03:51Z", + "jobId": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:03:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -458,39 +484,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/75d0270b-a6cb-47f2-abc9-6546c01d6b72", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "079c5b04-aa86-431f-9514-1a29ce71274d", + "apim-request-id": "817d0e1b-9cae-4262-9c63-0bd6d5e55c4d", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:04:02 GMT", + "Date": "Tue, 29 Jun 2021 19:14: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": "7" }, "ResponseBody": { - "jobId": "75d0270b-a6cb-47f2-abc9-6546c01d6b72", - "lastUpdateDateTime": "2021-05-27T18:03:53Z", - "createdDateTime": "2021-05-27T18:03:51Z", - "expirationDateTime": "2021-05-28T18:03:51Z", + "jobId": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:03:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -499,39 +527,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/75d0270b-a6cb-47f2-abc9-6546c01d6b72", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "5f341e9a-9589-4593-a6a5-c66267b0e5f3", + "apim-request-id": "9018a43e-a494-46e0-9690-c1460cfb4d8c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:04:03 GMT", + "Date": "Tue, 29 Jun 2021 19:14:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "75d0270b-a6cb-47f2-abc9-6546c01d6b72", - "lastUpdateDateTime": "2021-05-27T18:03:53Z", - "createdDateTime": "2021-05-27T18:03:51Z", - "expirationDateTime": "2021-05-28T18:03:51Z", + "jobId": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:03:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -540,39 +570,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/75d0270b-a6cb-47f2-abc9-6546c01d6b72", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "ec6e1a3f-1a7e-43fc-8e4f-8ba67eabaed2", + "apim-request-id": "7693bc67-309b-4aa7-aed6-0695b6bf1af1", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:04:04 GMT", + "Date": "Tue, 29 Jun 2021 19:14: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": "8" }, "ResponseBody": { - "jobId": "75d0270b-a6cb-47f2-abc9-6546c01d6b72", - "lastUpdateDateTime": "2021-05-27T18:03:53Z", - "createdDateTime": "2021-05-27T18:03:51Z", - "expirationDateTime": "2021-05-28T18:03:51Z", + "jobId": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:03:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -581,39 +613,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/75d0270b-a6cb-47f2-abc9-6546c01d6b72", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "c5f42dc7-14e1-45fd-aa26-eab39f92354c", + "apim-request-id": "188982b1-1aa6-4bbf-bca0-f09318fcf3f4", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:04:05 GMT", + "Date": "Tue, 29 Jun 2021 19:14:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "75d0270b-a6cb-47f2-abc9-6546c01d6b72", - "lastUpdateDateTime": "2021-05-27T18:03:53Z", - "createdDateTime": "2021-05-27T18:03:51Z", - "expirationDateTime": "2021-05-28T18:03:51Z", + "jobId": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:03:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -622,39 +656,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/75d0270b-a6cb-47f2-abc9-6546c01d6b72", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "33480e41-6267-4531-a1e3-112df4783db5", + "apim-request-id": "df5d717d-efa5-44de-a8e7-e7b269079e0a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:04:06 GMT", + "Date": "Tue, 29 Jun 2021 19:14:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "75d0270b-a6cb-47f2-abc9-6546c01d6b72", - "lastUpdateDateTime": "2021-05-27T18:03:53Z", - "createdDateTime": "2021-05-27T18:03:51Z", - "expirationDateTime": "2021-05-28T18:03:51Z", + "jobId": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:03:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -663,39 +699,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/75d0270b-a6cb-47f2-abc9-6546c01d6b72", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "a83ecac3-bbc7-444f-9bab-6c381f5bf68a", + "apim-request-id": "6a8a8caa-4ae1-4256-95fb-4fe6ee092bab", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:04:07 GMT", + "Date": "Tue, 29 Jun 2021 19:14:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "75d0270b-a6cb-47f2-abc9-6546c01d6b72", - "lastUpdateDateTime": "2021-05-27T18:03:53Z", - "createdDateTime": "2021-05-27T18:03:51Z", - "expirationDateTime": "2021-05-28T18:03:51Z", + "jobId": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:03:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -704,39 +742,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/75d0270b-a6cb-47f2-abc9-6546c01d6b72", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "cb59b9ad-e3b8-4bce-8266-dc7af238589b", + "apim-request-id": "f8fe459f-915f-4944-97e3-570a3bf8e2d5", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:04:08 GMT", + "Date": "Tue, 29 Jun 2021 19:14: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": "75d0270b-a6cb-47f2-abc9-6546c01d6b72", - "lastUpdateDateTime": "2021-05-27T18:03:53Z", - "createdDateTime": "2021-05-27T18:03:51Z", - "expirationDateTime": "2021-05-28T18:03:51Z", + "jobId": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:03:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -745,39 +785,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/75d0270b-a6cb-47f2-abc9-6546c01d6b72", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "d69fed9e-6d57-4027-91f7-d76cde6c5bc1", + "apim-request-id": "0dc0da6d-3997-4524-a1fe-19d0ab157f38", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:04:09 GMT", + "Date": "Tue, 29 Jun 2021 19:14:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { - "jobId": "75d0270b-a6cb-47f2-abc9-6546c01d6b72", - "lastUpdateDateTime": "2021-05-27T18:03:53Z", - "createdDateTime": "2021-05-27T18:03:51Z", - "expirationDateTime": "2021-05-28T18:03:51Z", + "jobId": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:03:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -786,39 +828,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/75d0270b-a6cb-47f2-abc9-6546c01d6b72", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "7ec00d5a-dd38-4bf3-a35a-37817fc8587e", + "apim-request-id": "8b604f0f-7aa5-4956-b173-d312ab630d52", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:04:11 GMT", + "Date": "Tue, 29 Jun 2021 19:14:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "75d0270b-a6cb-47f2-abc9-6546c01d6b72", - "lastUpdateDateTime": "2021-05-27T18:03:53Z", - "createdDateTime": "2021-05-27T18:03:51Z", - "expirationDateTime": "2021-05-28T18:03:51Z", + "jobId": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:03:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -827,47 +871,694 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/75d0270b-a6cb-47f2-abc9-6546c01d6b72", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "15ad964c-26d6-48a6-8d79-b7b89b3f2302", + "apim-request-id": "71a28240-55c0-420b-bae6-1eaac9c796de", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:14:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", + "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.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "f8195053-aebf-4cb1-b0c1-0d220ca443d5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:14: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": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", + "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.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "59b0957c-30c6-4285-adf1-64948ad045e1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:14:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", + "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.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "911646a2-b8ff-4af2-bc3c-09dfd4ec58d0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:14:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", + "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.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "b057be23-5a36-42c3-9b2a-ee219f1088f6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:14: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": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", + "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.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "39e3ca1f-0d88-4b05-9075-970158e51983", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:14:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", + "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.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "f0fc3cd8-b4b0-45b9-a07f-b70694db57e9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:14:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", + "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.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "3187320c-542e-41d7-9c0e-f753dd6daf15", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:14:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", + "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.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "7b605f16-ed90-4231-8d0c-a5f23a7f64e8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:14: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": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", + "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.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "eefde5dc-9628-4d90-aec8-1a9c014c2424", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:14:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", + "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.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f6ebc107326c02ba8bfc39ed2ac7d1f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "471b06bf-9879-4e5c-8e13-579c7c21f8ab", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:14:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", + "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.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "793e8c5a970fda24b3be42e706b8d4fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b22332c1-0ca9-4403-bb99-c7b0f199bf6d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:14: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": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", + "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.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f4ae58e0ba8f77f47f255a43eab309a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "df4e7e25-6fff-4743-986f-126dfeacd38f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "19" + }, + "ResponseBody": { + "jobId": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", + "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.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "588d8f667580708e9d1143aeefd3fcd3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a7780e9a-9134-47b2-9b89-3ba371eeec32", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", + "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.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d10c3b28dd19a06398c6fae93ce0ef00", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "835ee76e-9b8e-46c3-a0f4-106f4faac376", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:14:27Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", + "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.1/analyze/jobs/e599f5b0-93d7-4640-ab40-a2df230a877e", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "76819db47c2a6a7dc93d567e764687ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8657e544-6fc6-4e24-ab4f-76e5d0fdd0a1", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:04:12 GMT", + "Date": "Tue, 29 Jun 2021 19:15:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "64" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "50" }, "ResponseBody": { - "jobId": "75d0270b-a6cb-47f2-abc9-6546c01d6b72", - "lastUpdateDateTime": "2021-05-27T18:04:11Z", - "createdDateTime": "2021-05-27T18:03:51Z", - "expirationDateTime": "2021-05-28T18:03:51Z", + "jobId": "e599f5b0-93d7-4640-ab40-a2df230a877e", + "lastUpdateDateTime": "2021-06-29T19:15:03Z", + "createdDateTime": "2021-06-29T19:14:24Z", + "expirationDateTime": "2021-06-30T19:14:24Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:04:11Z" - }, "completed": 1, "failed": 0, "inProgress": 0, "total": 1, "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:04:11.5988824Z", - "name": "AnalyzeOperationWithOpinionMining", + "lastUpdateDateTime": "2021-06-29T19:15:03.2019713Z", + "taskName": "SentimentAnalysis_latest", "state": "succeeded", "results": { "documents": [ 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 651186fa9ef3..982c7e021fa4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationAnalyzeSentimentWithOpinionMiningAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationAnalyzeSentimentWithOpinionMiningAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "304", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-404eb6d9906a6841a1c7be244f1e36df-7410d85bc88b9749-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-da4cce86c1fd4e46b7edce24178ba4ec-1397da0921ee6f4a-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b6927c132680ad8649ac90e19e28d853", "x-ms-return-client-request-id": "true" }, @@ -37,50 +37,46 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "f9f19146-acb9-4e11-9e93-b9ed1ae4b61b", - "Date": "Thu, 27 May 2021 18:06:56 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "apim-request-id": "c7134a6c-f5f6-4c11-a776-9c56290c45d1", + "Date": "Tue, 29 Jun 2021 19:00:37 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2681" + "x-envoy-upstream-service-time": "151" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "153d4b6951e2c2fd62e262d9e8ed622f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "97158e64-6963-4a7c-9191-db6ec5c66cc8", + "apim-request-id": "13324060-4031-4d01-8eb3-b92a179dbaad", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:56 GMT", + "Date": "Tue, 29 Jun 2021 19:00: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-envoy-upstream-service-time": "38" }, "ResponseBody": { - "jobId": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:57Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "notStarted", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:57Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -89,39 +85,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8d697313a410adabb5c42bae4e0a8799", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1f0dd72d-c962-4358-aeb2-18648c00381c", + "apim-request-id": "10b5197f-1768-4e37-b291-0f89024bd7bd", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:57 GMT", + "Date": "Tue, 29 Jun 2021 19:00:38 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": "6" }, "ResponseBody": { - "jobId": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:57Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", - "status": "notStarted", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:57Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -130,39 +122,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4e5bfab8d343c24b7ecf549ec3adc45c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "72245077-411c-4243-8a25-a287cc00b621", + "apim-request-id": "f354d634-8da9-42a2-a86a-1069e275e728", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:58 GMT", + "Date": "Tue, 29 Jun 2021 19:00:40 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": "39" }, "ResponseBody": { - "jobId": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:59Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:59Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -171,39 +159,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2ace604a4bbec5429f90601e254f7357", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "78a3b3e3-ccb6-488f-ba4b-2ae9a16eca8a", + "apim-request-id": "33b64bf5-65d9-4966-8d4e-809e1d9ce623", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:06:59 GMT", + "Date": "Tue, 29 Jun 2021 19:00: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": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:59Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:59Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -212,39 +196,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ee21c95b139140eb27a70f40500de907", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "97fc269c-b580-404c-96a3-d209bc780c03", + "apim-request-id": "4fddb314-a838-4f64-902b-03c88d10fd26", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:00 GMT", + "Date": "Tue, 29 Jun 2021 19:00: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": "6" }, "ResponseBody": { - "jobId": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:59Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:59Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -253,39 +233,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ed63cf005c3c6ddab795afb3722d9d2e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4ad81ebe-7625-4320-bbac-3105b372ed1a", + "apim-request-id": "00406d3b-ab29-4068-a0c9-0af0b5d62845", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:01 GMT", + "Date": "Tue, 29 Jun 2021 19:00: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": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:59Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:59Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -294,39 +270,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f942fc5cd58b36ca758d02173c027591", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "25768687-9285-4ce8-ab80-168f22e8f778", + "apim-request-id": "43d747cb-7ceb-44fa-85f3-5f785df22034", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:02 GMT", + "Date": "Tue, 29 Jun 2021 19:00:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { - "jobId": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:59Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:59Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -335,39 +307,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "551d58a785ebfe1aefb436fb6438cefa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "905f3d8f-fd9f-40b8-b618-5aebb06a6267", + "apim-request-id": "f1fa31b0-8d5e-49e8-82da-6af8c7ba63ad", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:03 GMT", + "Date": "Tue, 29 Jun 2021 19:00:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:59Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:59Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -376,39 +344,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "53e4e00aefca2a7b052d78ae5ac330b5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "207d2d2e-57a8-448f-a5fb-a5e5e2d6b791", + "apim-request-id": "71e3c5a5-e319-4fe4-b385-a9de7950e7b3", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:04 GMT", + "Date": "Tue, 29 Jun 2021 19:00:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:59Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:59Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -417,39 +381,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "190c1d20470fd642e1440ad79fced23c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "acbd5fc4-b5ed-4192-afe9-2a0f9664c10b", + "apim-request-id": "c9933d4d-31b0-43cc-bf99-3b6644122773", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:06 GMT", + "Date": "Tue, 29 Jun 2021 19:00:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:59Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:59Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -458,39 +418,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5b0d08bf221db7c6ddf350be0c6ca42c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "706be981-5ad3-4771-961b-ab9779a59f41", + "apim-request-id": "e77fa5b1-06ca-4f99-900a-efcf1c595f5b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:07 GMT", + "Date": "Tue, 29 Jun 2021 19:00:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:59Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:59Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -499,39 +455,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "46db8183b42cc2ea9d0e7186e4a48b36", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ad8c8a0d-9199-4b3d-8d81-71ab2fa8227b", + "apim-request-id": "b9e35272-0de3-4d56-bfdf-667c2448c227", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:08 GMT", + "Date": "Tue, 29 Jun 2021 19:00:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:59Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:59Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -540,39 +492,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "51ef3c5ad4b6fe9856543c1cf784c975", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8eec5230-805f-4265-b821-348e8e4d2f99", + "apim-request-id": "c8050077-b219-46db-923f-8be718260d03", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:09 GMT", + "Date": "Tue, 29 Jun 2021 19:00:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:59Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:59Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -581,39 +529,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1e54de9f8bf30a101e4abe0fb040d239", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7bef6aa4-5a3f-4b96-a2bc-45c26fa04aa5", + "apim-request-id": "85ecd519-83cb-48a6-9e65-abe1eee19be8", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:10 GMT", + "Date": "Tue, 29 Jun 2021 19:00:52 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": "6" }, "ResponseBody": { - "jobId": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:59Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:59Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -622,39 +566,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d0641968537cae75e9ddf0d777ceca19", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8987ee91-773e-474c-b82d-776806f4d074", + "apim-request-id": "c544856a-abfa-4022-bfdb-b56a946bb0d2", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:11 GMT", + "Date": "Tue, 29 Jun 2021 19:00:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:59Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:59Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -663,39 +603,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "06e6fc446c4fce422ce4336b16884e16", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "58a55ab5-fd2a-46d9-ad90-56ebd94c1e95", + "apim-request-id": "2ae073db-fcea-4f22-ab86-7b8830fd4d64", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:12 GMT", + "Date": "Tue, 29 Jun 2021 19:00: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": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:59Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:59Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -704,39 +640,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ddb30381f81f4cf868a534169b389250", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "84c33338-d3e5-434a-a228-4454986775a2", + "apim-request-id": "a1fbbc33-75d9-4fd4-8da0-2e823879ddf9", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:13 GMT", + "Date": "Tue, 29 Jun 2021 19:00: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-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:59Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:59Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -745,39 +677,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b3cba480cc59fbe9d695a4981f0a9860", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0f1f9147-7640-48f5-a62e-68e33d8552b3", + "apim-request-id": "a9ae17b7-db8f-4e66-bbca-1487717e4bf6", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:15 GMT", + "Date": "Tue, 29 Jun 2021 19:00:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:59Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:59Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -786,39 +714,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7456da8eec1a4bf903999daa382c33f4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c58dc480-2a29-4545-b819-45df840e7964", + "apim-request-id": "53f5b6f3-5dfb-4a26-819f-fcc5ff9e142e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:16 GMT", + "Date": "Tue, 29 Jun 2021 19:00:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:59Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:59Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -827,39 +751,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "71eae3519abdb5bc1ab8078a54602c5e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3c1e47f9-3caa-416b-9862-c9a2337f4f3d", + "apim-request-id": "e2d588a6-42f0-4250-a175-cd53a5387ec1", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:17 GMT", + "Date": "Tue, 29 Jun 2021 19:00:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:59Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:59Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -868,39 +788,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c187d40d1ee19335ab7fb0c02e3ec3aa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eb570a71-b7ac-4f99-82f1-64639f01b15f", + "apim-request-id": "9d6d0e87-7478-4e7a-87e2-8862a42cae5b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:18 GMT", + "Date": "Tue, 29 Jun 2021 19:00:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:59Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:59Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -909,39 +825,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3c46b061261ff3a31da05a62e56ef7a2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8529b2f5-0fdb-4262-a578-3f36f01bfaf0", + "apim-request-id": "a0820594-9aee-4dee-b8a6-daac94b03a06", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:19 GMT", + "Date": "Tue, 29 Jun 2021 19:01: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-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:59Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:59Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -950,39 +862,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "639d3f6c71a43212ad56c63deafc86db", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "155c9c01-b813-4889-8d3b-59c81f0f988b", + "apim-request-id": "8a976b90-dfdc-4570-8ecd-6780ab1ee42b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:20 GMT", + "Date": "Tue, 29 Jun 2021 19:01:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { - "jobId": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:59Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:59Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -991,39 +899,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a3285cf4f01ae63e3193a341c4d3ae3c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ced8d87e-0014-4653-85fa-f702cf9afc2c", + "apim-request-id": "dc1a9d4f-7e33-452f-9ec8-420e5b1ebd1c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:21 GMT", + "Date": "Tue, 29 Jun 2021 19:01:02 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": "16" }, "ResponseBody": { - "jobId": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:59Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:59Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -1032,39 +936,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ef530d885fa1f0059e138fc860650921", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b5ed4733-fb65-49bf-bdd6-1db1fcb39444", + "apim-request-id": "73432a0a-0ed3-426f-bdc0-160d0f6196a9", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:22 GMT", + "Date": "Tue, 29 Jun 2021 19:01:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:59Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:59Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -1073,39 +973,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "886d7e1953457c8801b63211ced06ed9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "85cc6cb0-433c-4f7b-b8ea-de2789caa83c", + "apim-request-id": "b3ee23ab-59c9-4b92-8b87-03e0852a801d", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:23 GMT", + "Date": "Tue, 29 Jun 2021 19:01: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": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:59Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:59Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -1114,39 +1010,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ddb489a897a8943957380506607586cb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "26a79c9e-28ff-4bb4-abdd-21588cea0e67", + "apim-request-id": "d2649c6a-e524-4cda-b32a-1978b0ea8b81", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:24 GMT", + "Date": "Tue, 29 Jun 2021 19:01: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": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:59Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:59Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -1155,39 +1047,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4627818a256635f684d6eeeb2df422cd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b8bd86c3-d9e1-4198-9359-dfdf6153e75f", + "apim-request-id": "435af4ce-bd3a-4b06-81bb-1b42617e5ed2", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:25 GMT", + "Date": "Tue, 29 Jun 2021 19:01:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "532" }, "ResponseBody": { - "jobId": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:59Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:59Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -1196,39 +1084,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d620b5a52bb0827844d8310d4e821c8b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b397ccc4-702a-4bcd-b26d-c069c84c0f15", + "apim-request-id": "6282d529-3798-4ea2-bf24-aa9cb9ab0352", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:27 GMT", + "Date": "Tue, 29 Jun 2021 19:01:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "48" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:59Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:59Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -1237,39 +1121,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4c86662f28a98273927f58d2a94e6762", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "81135cfe-8860-457d-8a54-67ea82f4d075", + "apim-request-id": "d658d5a3-a4d7-4b88-a7ba-ff9972fb724d", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:28 GMT", + "Date": "Tue, 29 Jun 2021 19:01:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:59Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:59Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -1278,39 +1158,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "aa603716af555e1b09a4018df4e9e702", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "30ff4da3-95ba-41b9-ac93-1a200f49bcae", + "apim-request-id": "78023f44-3bf3-4b24-8b6f-7444265f79e6", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:29 GMT", + "Date": "Tue, 29 Jun 2021 19:01:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:59Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:59Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -1319,39 +1195,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c6bb62bad56d7d24429d4430d3a6d9f6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9e568aba-a76d-4a2f-963f-bc4b544b1821", + "apim-request-id": "07861707-dd3d-4a3e-8e2b-0d5d18dbd5ae", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:30 GMT", + "Date": "Tue, 29 Jun 2021 19:01: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": "6" }, "ResponseBody": { - "jobId": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:59Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:59Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -1360,39 +1232,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "16f6ce70712180354b28420426e58ea8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b6d9a881-b50f-494a-85c1-360e279c3f27", + "apim-request-id": "d617740f-3b8a-4635-bb71-9ea51e876f9b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:31 GMT", + "Date": "Tue, 29 Jun 2021 19:01: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": "6" }, "ResponseBody": { - "jobId": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:59Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:59Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -1401,39 +1269,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "46185698a19240f513e367b76aea8b62", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5bd2d681-5c60-4367-ab14-48c1f2e01fcd", + "apim-request-id": "e9246860-ca85-43a7-9e78-fd15593bbf0e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:32 GMT", + "Date": "Tue, 29 Jun 2021 19:01:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:59Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:59Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -1442,39 +1306,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "251d0bcbd0f348e02d3b7a45921f565c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9b76e33d-4046-42aa-ac23-4eeee8d47301", + "apim-request-id": "0f14352a-a846-4d90-8c24-6148b65c0ef5", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:33 GMT", + "Date": "Tue, 29 Jun 2021 19:01:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:06:59Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:06:59Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -1483,47 +1343,1597 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/05fcc62f-58f9-4567-85a4-98b9f51a4d9e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7c989c0f938dcf63d9b5033d097e1561", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c7c1b0d4-7bef-41af-9ce5-0061be3dda6d", + "apim-request-id": "4af1a691-9412-4b93-9721-cf6e974dff77", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01:16 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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1a38e09d68c8c7b575d0185626b0adf3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fec4a2bd-72c3-4f5c-ba8f-3102efaec482", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01: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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cea80b8c0e5138d4a74d4c3dcca33eaf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "00e892e2-ee04-483c-b826-670528f1ea41", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01:18 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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b2a819263be7a794e7d007bd7a0ca929", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "28877773-a88f-407c-b419-1c572a9af5fa", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01: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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "feb0100746d58e0f0b00737a1b77fbd2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "18eb9ae3-1eb9-4042-8d63-a4099ff9fc06", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01: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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0c306991fa08500c7600e7800717be9a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "daf90ff4-943c-48cf-9b42-b6c50a74f1c5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01: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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "bc3623a43ff2dfd90919a7e6c8198b6f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "83992d55-5fa0-4da6-bbfe-65f95e9c1fc6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01: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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "102b34d59ddc0c21045f88d45e8e87f4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ece62502-735c-4b4b-9ad2-d93ffce93f68", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01: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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f8d6d8413f4152e0905002ee5325885c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d63f4acb-d80b-46a8-94de-ba45e73ff3c9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01: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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d2ab7875aeeb07be0229b792b704817b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "758a080f-8073-4f02-a0cd-1e2610347511", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01: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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f0a5b3929342962e54d97f8b9a32b9df", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f0b1b798-a4e4-48d3-8f6b-eaed4fccb8e5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01: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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e65f2bd7b4e3930819cff518874d9b8b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d8e3577d-05d7-4d7f-be2e-a2e0b4b30774", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01: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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a05b87cf9780e21949147e112e336ccf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9f58261a-8f5d-4b95-8f48-36697ea82a4f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01: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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8bbad76f9aa5de97aa11d7739d160e06", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "df6acc1a-d44d-47d9-9bb0-c1b201c580a4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01: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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "12bbf33e19d63f5f117c9dce35f765e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ac97bf0f-50c0-432e-9b38-782740890b56", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01: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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "afa826620f9334e6f07df56ec0a64532", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c5e75812-0908-4866-9778-67cc6e6d98bf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01: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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3ad37705597856f8787a7a28fdc8a8b3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "752a99da-e1bd-43a2-87cb-908eda544d3b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01: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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7610f1ac5f6e2e730c86225923f17f6a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1676b08e-fb87-47d4-ace0-bf227124d92d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01: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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "bec86a372a23096d2d52371895be3727", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6d627e7e-8daa-40ef-8d02-45df73405d3c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cfc142d4ce96a6c403a52df1379f3287", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "258b816a-b89f-4b53-993e-9acf8ab04edf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01: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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "92f00ffbe9ff828f8407491b285b994e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1045aa6b-b43a-4bcb-869e-4d3e5ee99219", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01: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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e184fb4faf2f68d4a622bb7efc7bd28e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b4b44eb0-6454-4f04-bc76-59afb441dfe9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01: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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "861caf20a4cdeb27b23f4b8f85a87ea8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c277ad6c-2e2b-4f7c-a4c1-c0ffaf722725", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01: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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3ba2df0b511a4b583a88ecdd2e118508", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "32f194c8-b27c-45d8-adcc-ce2d936baead", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "78fbbb34133eaa80d4992eef6445e3fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "55819efe-4bd0-4457-8461-3bbd21a76538", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01:44 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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1d7212a396d9ce7357d04b45b849bca1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "81a30e9c-f5f8-4c96-870e-2b92ab7ed674", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01: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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c95a42ba05acf8695ef767812268e6f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5750a6ee-e9ea-4e5f-b6c1-2f8954a26ba0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01: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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1b39eea4679e9e2e472c216dc83af28a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ddd1b8e8-f131-4044-bc00-a30a2f486c14", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "5" + }, + "ResponseBody": { + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "22358cdc19ea9e51a97abfe22ff2acee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "de8bfaaa-08a2-419a-9a6f-4177f966dd8d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c9a155eaa010530313bc817fe4fb3023", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "41ea6cae-0c9d-45ae-acca-b1d226ec393c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01: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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "96a4dd04c4338a0b9c9b7224a84c6e55", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "99ab0578-eca3-46b0-9caf-ff7c13fc5229", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01:51 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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7283328028993c7a89e20e2e97d2baad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6a05c54e-5cfd-4473-8bf7-33a973bee359", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01: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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "52dd9b49164d25bb49172d742edfaac7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e2456eb8-9fcd-4c47-901d-7513775a7b7a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01:53 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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b1fe2c4dbd77dc8a63680c51b6dcf2ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dd51514c-678b-427a-b427-04bc9007bffa", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01: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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0ddac4e11c6f6a08775e2981fb050daa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f15a4db9-ca00-41b6-beb7-2ea030857539", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01: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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6be1473708d38b351001efe5096a6f6d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "26b85fc7-d2f0-4e2a-8ce5-1efb95f2019a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01: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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6a9362249d043057249439199408e05d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ad8b5830-34c1-4426-b986-f7054969e19c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01:57 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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6e19625a86fbd8f78e4efc6e2d22610d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "17b5d6a0-9a49-4432-8257-f706ebbc1dfd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01: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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "985dbbeea37199a5efb0473ecf1cf707", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a31ea54e-8828-41b0-a2e3-c60ac45c8c3b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:01: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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a68a912000509e716bbadbb5a0e90201", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "48eda680-24a4-45ee-93f0-51e6cd0ad3a4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:02: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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d82b2c3348abb7ecbc7f7e4a3eb80972", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "092b3ec5-74ac-4269-95a8-7dd046cd6036", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:02:01 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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9c4df557ba98edbc49be2db6c7f0f906", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e9c55171-2f9c-498b-813a-08853c35c2aa", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:02: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": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:00:37Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", + "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.1/analyze/jobs/b8e55e80-f322-41fd-9b50-caea56807597", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a20b46ad1ef1d85ba4d3e9d182275fb3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fe434585-2120-4f32-b62d-91e05bc9a66c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:07:34 GMT", + "Date": "Tue, 29 Jun 2021 19:02:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "237" + "x-envoy-upstream-service-time": "50" }, "ResponseBody": { - "jobId": "05fcc62f-58f9-4567-85a4-98b9f51a4d9e", - "lastUpdateDateTime": "2021-05-27T18:07:34Z", - "createdDateTime": "2021-05-27T18:06:54Z", - "expirationDateTime": "2021-05-28T18:06:54Z", + "jobId": "b8e55e80-f322-41fd-9b50-caea56807597", + "lastUpdateDateTime": "2021-06-29T19:02:03Z", + "createdDateTime": "2021-06-29T19:00:37Z", + "expirationDateTime": "2021-06-30T19:00:37Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithOpinionMining", "tasks": { - "details": { - "name": "AnalyzeOperationWithOpinionMining", - "lastUpdateDateTime": "2021-05-27T18:07:34Z" - }, "completed": 1, "failed": 0, "inProgress": 0, "total": 1, "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:07:34.0859703Z", - "name": "AnalyzeOperationWithOpinionMining", + "lastUpdateDateTime": "2021-06-29T19:02:03.8723806Z", + "taskName": "SentimentAnalysis_latest", "state": "succeeded", "results": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTest.json index f956dfa71b3e..dde6b417a7bd 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.1-preview.5/analyze", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "241", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-081829f1e28db14fa579693909343c18-a2b46ff42dd3dc4c-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-a5b53989da37594caee4794c9e7592b6-ac462ad087d75d43-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "bc10ae4f3809e9b40d4f6b783fc973c7", "x-ms-return-client-request-id": "true" }, @@ -38,50 +44,52 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "95c5313d-e832-4cac-8701-62d588a36a39", - "Date": "Thu, 03 Jun 2021 18:10:38 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/71b0652e-2bed-4919-bd86-dba7441ef127", + "apim-request-id": "540978ea-fc20-4ae1-9970-b0fd91d0dc1b", + "Date": "Tue, 29 Jun 2021 19:15:04 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "15288" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "291" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/71b0652e-2bed-4919-bd86-dba7441ef127", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "14f218a4-224e-4e38-81f0-a3e60b948168", + "apim-request-id": "13bded15-4ce4-44e1-8214-1171519963f8", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:10:48 GMT", + "Date": "Tue, 29 Jun 2021 19:15:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10064" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "71b0652e-2bed-4919-bd86-dba7441ef127", - "lastUpdateDateTime": "2021-06-03T18:10:41Z", - "createdDateTime": "2021-06-03T18:10:22Z", - "expirationDateTime": "2021-06-04T18:10:22Z", - "status": "running", + "jobId": "245443d9-8616-4013-8a1d-e7aeddc0fab6", + "lastUpdateDateTime": "2021-06-29T19:15:04Z", + "createdDateTime": "2021-06-29T19:15:04Z", + "expirationDateTime": "2021-06-30T19:15:04Z", + "status": "notStarted", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:10:41Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -90,39 +98,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/71b0652e-2bed-4919-bd86-dba7441ef127", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "5ce5de3a-f9a4-4442-9360-380fff3799c0", + "apim-request-id": "6a450251-d280-46dd-bdd8-377bf76e3379", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:10:49 GMT", + "Date": "Tue, 29 Jun 2021 19:15:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "71b0652e-2bed-4919-bd86-dba7441ef127", - "lastUpdateDateTime": "2021-06-03T18:10:41Z", - "createdDateTime": "2021-06-03T18:10:22Z", - "expirationDateTime": "2021-06-04T18:10:22Z", - "status": "running", + "jobId": "245443d9-8616-4013-8a1d-e7aeddc0fab6", + "lastUpdateDateTime": "2021-06-29T19:15:04Z", + "createdDateTime": "2021-06-29T19:15:04Z", + "expirationDateTime": "2021-06-30T19:15:04Z", + "status": "notStarted", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:10:41Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -131,39 +141,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/71b0652e-2bed-4919-bd86-dba7441ef127", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "0b200834-d9f0-43e7-94e6-22f2533787df", + "apim-request-id": "57bac8d5-cc4c-4298-be8e-e55f4305c34a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:10:55 GMT", + "Date": "Tue, 29 Jun 2021 19:15:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5163" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "71b0652e-2bed-4919-bd86-dba7441ef127", - "lastUpdateDateTime": "2021-06-03T18:10:41Z", - "createdDateTime": "2021-06-03T18:10:22Z", - "expirationDateTime": "2021-06-04T18:10:22Z", - "status": "running", + "jobId": "245443d9-8616-4013-8a1d-e7aeddc0fab6", + "lastUpdateDateTime": "2021-06-29T19:15:04Z", + "createdDateTime": "2021-06-29T19:15:04Z", + "expirationDateTime": "2021-06-30T19:15:04Z", + "status": "notStarted", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:10:41Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -172,39 +184,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/71b0652e-2bed-4919-bd86-dba7441ef127", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "98ed3093-7c2f-4fe6-a668-9ce55e3e16ed", + "apim-request-id": "f710202d-dd1c-4c3e-a59d-f2e2aefd67d3", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:10:59 GMT", + "Date": "Tue, 29 Jun 2021 19:15:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2571" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "71b0652e-2bed-4919-bd86-dba7441ef127", - "lastUpdateDateTime": "2021-06-03T18:10:41Z", - "createdDateTime": "2021-06-03T18:10:22Z", - "expirationDateTime": "2021-06-04T18:10:22Z", + "jobId": "245443d9-8616-4013-8a1d-e7aeddc0fab6", + "lastUpdateDateTime": "2021-06-29T19:15:06Z", + "createdDateTime": "2021-06-29T19:15:04Z", + "expirationDateTime": "2021-06-30T19:15:04Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:10:41Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -213,39 +227,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/71b0652e-2bed-4919-bd86-dba7441ef127", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "7dd77b62-e0bf-4704-a181-74968f957b13", + "apim-request-id": "983d9565-6717-458a-bfb4-43a2a392c498", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:00 GMT", + "Date": "Tue, 29 Jun 2021 19:15:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "13" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { - "jobId": "71b0652e-2bed-4919-bd86-dba7441ef127", - "lastUpdateDateTime": "2021-06-03T18:10:41Z", - "createdDateTime": "2021-06-03T18:10:22Z", - "expirationDateTime": "2021-06-04T18:10:22Z", + "jobId": "245443d9-8616-4013-8a1d-e7aeddc0fab6", + "lastUpdateDateTime": "2021-06-29T19:15:06Z", + "createdDateTime": "2021-06-29T19:15:04Z", + "expirationDateTime": "2021-06-30T19:15:04Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:10:41Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -254,39 +270,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/71b0652e-2bed-4919-bd86-dba7441ef127", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "b5575648-afc9-480a-9320-2c108b0394a8", + "apim-request-id": "aa5da269-7f50-4fb8-a686-95e9e1f0cd72", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:01 GMT", + "Date": "Tue, 29 Jun 2021 19:15:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "71b0652e-2bed-4919-bd86-dba7441ef127", - "lastUpdateDateTime": "2021-06-03T18:10:41Z", - "createdDateTime": "2021-06-03T18:10:22Z", - "expirationDateTime": "2021-06-04T18:10:22Z", + "jobId": "245443d9-8616-4013-8a1d-e7aeddc0fab6", + "lastUpdateDateTime": "2021-06-29T19:15:06Z", + "createdDateTime": "2021-06-29T19:15:04Z", + "expirationDateTime": "2021-06-30T19:15:04Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:10:41Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -295,39 +313,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/71b0652e-2bed-4919-bd86-dba7441ef127", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "6ff96209-51fe-4022-b3dc-7421b19b0e19", + "apim-request-id": "f52f0419-1af6-4295-8b7d-03793e17e03c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:02 GMT", + "Date": "Tue, 29 Jun 2021 19:15: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": "17" }, "ResponseBody": { - "jobId": "71b0652e-2bed-4919-bd86-dba7441ef127", - "lastUpdateDateTime": "2021-06-03T18:10:41Z", - "createdDateTime": "2021-06-03T18:10:22Z", - "expirationDateTime": "2021-06-04T18:10:22Z", + "jobId": "245443d9-8616-4013-8a1d-e7aeddc0fab6", + "lastUpdateDateTime": "2021-06-29T19:15:06Z", + "createdDateTime": "2021-06-29T19:15:04Z", + "expirationDateTime": "2021-06-30T19:15:04Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:10:41Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -336,39 +356,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/71b0652e-2bed-4919-bd86-dba7441ef127", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "1e11c808-6c04-4bd9-81fd-2c85cb48daa6", + "apim-request-id": "da3b9dbd-e0cc-4680-bb33-796d16402888", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:03 GMT", + "Date": "Tue, 29 Jun 2021 19:15: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": "7" }, "ResponseBody": { - "jobId": "71b0652e-2bed-4919-bd86-dba7441ef127", - "lastUpdateDateTime": "2021-06-03T18:10:41Z", - "createdDateTime": "2021-06-03T18:10:22Z", - "expirationDateTime": "2021-06-04T18:10:22Z", + "jobId": "245443d9-8616-4013-8a1d-e7aeddc0fab6", + "lastUpdateDateTime": "2021-06-29T19:15:06Z", + "createdDateTime": "2021-06-29T19:15:04Z", + "expirationDateTime": "2021-06-30T19:15:04Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:10:41Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -377,39 +399,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/71b0652e-2bed-4919-bd86-dba7441ef127", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "b89ae7d9c7dd7f46d3c3eacaf163346f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "79c54793-40d2-4736-953f-a8b760bd3b5c", + "apim-request-id": "d1ff18c6-0a2c-43cc-ad98-7cbea70a7dbb", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:04 GMT", + "Date": "Tue, 29 Jun 2021 19:15:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "71b0652e-2bed-4919-bd86-dba7441ef127", - "lastUpdateDateTime": "2021-06-03T18:10:41Z", - "createdDateTime": "2021-06-03T18:10:22Z", - "expirationDateTime": "2021-06-04T18:10:22Z", + "jobId": "245443d9-8616-4013-8a1d-e7aeddc0fab6", + "lastUpdateDateTime": "2021-06-29T19:15:06Z", + "createdDateTime": "2021-06-29T19:15:04Z", + "expirationDateTime": "2021-06-30T19:15:04Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:10:41Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -418,39 +442,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/71b0652e-2bed-4919-bd86-dba7441ef127", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "3efecf5a8adcdc60ec20aea3367cbb7f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8b81e133-ad1b-4263-b6ea-4cae61ef01ac", + "apim-request-id": "104e4566-7ec2-487b-bf95-5155832e7e79", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:05 GMT", + "Date": "Tue, 29 Jun 2021 19:15:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "20" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "71b0652e-2bed-4919-bd86-dba7441ef127", - "lastUpdateDateTime": "2021-06-03T18:10:41Z", - "createdDateTime": "2021-06-03T18:10:22Z", - "expirationDateTime": "2021-06-04T18:10:22Z", + "jobId": "245443d9-8616-4013-8a1d-e7aeddc0fab6", + "lastUpdateDateTime": "2021-06-29T19:15:06Z", + "createdDateTime": "2021-06-29T19:15:04Z", + "expirationDateTime": "2021-06-30T19:15:04Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:10:41Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -459,39 +485,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/71b0652e-2bed-4919-bd86-dba7441ef127", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "c7f99a2ef37401d854c54fb6c70715c9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7cf097aa-321e-4ebd-aa4d-a13977499897", + "apim-request-id": "a22a8b56-2d6e-490b-90c7-88060a36bc9b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:06 GMT", + "Date": "Tue, 29 Jun 2021 19:15:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "71b0652e-2bed-4919-bd86-dba7441ef127", - "lastUpdateDateTime": "2021-06-03T18:10:41Z", - "createdDateTime": "2021-06-03T18:10:22Z", - "expirationDateTime": "2021-06-04T18:10:22Z", + "jobId": "245443d9-8616-4013-8a1d-e7aeddc0fab6", + "lastUpdateDateTime": "2021-06-29T19:15:06Z", + "createdDateTime": "2021-06-29T19:15:04Z", + "expirationDateTime": "2021-06-30T19:15:04Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:10:41Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -500,39 +528,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/71b0652e-2bed-4919-bd86-dba7441ef127", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "9d6e8fc7d5b94f3a87bdcbbd18a24956", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "34a45adc-d741-461c-b53a-6e40675927ed", + "apim-request-id": "f9990112-6afd-407b-a038-eafe0f9b4d97", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:07 GMT", + "Date": "Tue, 29 Jun 2021 19:15:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { - "jobId": "71b0652e-2bed-4919-bd86-dba7441ef127", - "lastUpdateDateTime": "2021-06-03T18:10:41Z", - "createdDateTime": "2021-06-03T18:10:22Z", - "expirationDateTime": "2021-06-04T18:10:22Z", + "jobId": "245443d9-8616-4013-8a1d-e7aeddc0fab6", + "lastUpdateDateTime": "2021-06-29T19:15:06Z", + "createdDateTime": "2021-06-29T19:15:04Z", + "expirationDateTime": "2021-06-30T19:15:04Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:10:41Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -541,39 +571,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/71b0652e-2bed-4919-bd86-dba7441ef127", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "579b6b076c6a66fbf7fdea173aa915e5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e05efb05-655d-4220-8f96-f9ee29d71207", + "apim-request-id": "67ed3b5c-8f70-457c-a921-f9b6c390b697", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:08 GMT", + "Date": "Tue, 29 Jun 2021 19:15:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "71b0652e-2bed-4919-bd86-dba7441ef127", - "lastUpdateDateTime": "2021-06-03T18:10:41Z", - "createdDateTime": "2021-06-03T18:10:22Z", - "expirationDateTime": "2021-06-04T18:10:22Z", + "jobId": "245443d9-8616-4013-8a1d-e7aeddc0fab6", + "lastUpdateDateTime": "2021-06-29T19:15:06Z", + "createdDateTime": "2021-06-29T19:15:04Z", + "expirationDateTime": "2021-06-30T19:15:04Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:10:41Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -582,39 +614,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/71b0652e-2bed-4919-bd86-dba7441ef127", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "a7dce50a1e0e59c55faa3fb6281be9b1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "82d7d607-5115-4fbe-8695-0dd5ed5d51dd", + "apim-request-id": "f4454346-6af0-4f36-bcea-fecf52a56f13", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:09 GMT", + "Date": "Tue, 29 Jun 2021 19:15:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "71b0652e-2bed-4919-bd86-dba7441ef127", - "lastUpdateDateTime": "2021-06-03T18:10:41Z", - "createdDateTime": "2021-06-03T18:10:22Z", - "expirationDateTime": "2021-06-04T18:10:22Z", + "jobId": "245443d9-8616-4013-8a1d-e7aeddc0fab6", + "lastUpdateDateTime": "2021-06-29T19:15:06Z", + "createdDateTime": "2021-06-29T19:15:04Z", + "expirationDateTime": "2021-06-30T19:15:04Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:10:41Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -623,47 +657,823 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/71b0652e-2bed-4919-bd86-dba7441ef127", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "5baff97bbd6c5a5f9307a5bcea2314de", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b8696225-3c1f-429d-947e-4a8cc0a90299", + "apim-request-id": "f61a2690-f764-4312-9308-24e639e0854b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "jobId": "245443d9-8616-4013-8a1d-e7aeddc0fab6", + "lastUpdateDateTime": "2021-06-29T19:15:06Z", + "createdDateTime": "2021-06-29T19:15:04Z", + "expirationDateTime": "2021-06-30T19:15:04Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "33b2e6a8a2c6e847a542f7bf2d453edb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b904e75f-e02b-4b28-ad2a-50372e27d45d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "245443d9-8616-4013-8a1d-e7aeddc0fab6", + "lastUpdateDateTime": "2021-06-29T19:15:06Z", + "createdDateTime": "2021-06-29T19:15:04Z", + "expirationDateTime": "2021-06-30T19:15:04Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "419b3813b9f94c798581130678096e3c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2e84d7f5-a62a-4290-ac68-9fd904b5b78b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5" + }, + "ResponseBody": { + "jobId": "245443d9-8616-4013-8a1d-e7aeddc0fab6", + "lastUpdateDateTime": "2021-06-29T19:15:06Z", + "createdDateTime": "2021-06-29T19:15:04Z", + "expirationDateTime": "2021-06-30T19:15:04Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "410d6196b668d9ebb2c6b52ac5a02d4d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3de895da-6cf4-4406-ae7d-deef9df8d7f7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15: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": "245443d9-8616-4013-8a1d-e7aeddc0fab6", + "lastUpdateDateTime": "2021-06-29T19:15:06Z", + "createdDateTime": "2021-06-29T19:15:04Z", + "expirationDateTime": "2021-06-30T19:15:04Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b1a8cac9d387eee46d65ad448e406f9c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "71175f16-212d-4a09-a30e-8d6c9db507d3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "245443d9-8616-4013-8a1d-e7aeddc0fab6", + "lastUpdateDateTime": "2021-06-29T19:15:06Z", + "createdDateTime": "2021-06-29T19:15:04Z", + "expirationDateTime": "2021-06-30T19:15:04Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cb28bbd3fc375d724dc28f32044f86e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c3a777d6-1dca-44ab-b003-30e6f67addf0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "245443d9-8616-4013-8a1d-e7aeddc0fab6", + "lastUpdateDateTime": "2021-06-29T19:15:06Z", + "createdDateTime": "2021-06-29T19:15:04Z", + "expirationDateTime": "2021-06-30T19:15:04Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ae3dc654bc61c3b47c1fd40208a74a71", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0018403d-a3bc-46aa-890c-a4307f74b736", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "245443d9-8616-4013-8a1d-e7aeddc0fab6", + "lastUpdateDateTime": "2021-06-29T19:15:06Z", + "createdDateTime": "2021-06-29T19:15:04Z", + "expirationDateTime": "2021-06-30T19:15:04Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0a5619566177cd15574b64c443b2ea1d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9788dfa1-637f-4f8d-8df5-cb8b0d9ec4ba", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15: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": "245443d9-8616-4013-8a1d-e7aeddc0fab6", + "lastUpdateDateTime": "2021-06-29T19:15:06Z", + "createdDateTime": "2021-06-29T19:15:04Z", + "expirationDateTime": "2021-06-30T19:15:04Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c8efc9dfc103163a06654f18276f54a6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c586fe6b-2e80-4a6d-bea2-2bf8ffc0139c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "245443d9-8616-4013-8a1d-e7aeddc0fab6", + "lastUpdateDateTime": "2021-06-29T19:15:06Z", + "createdDateTime": "2021-06-29T19:15:04Z", + "expirationDateTime": "2021-06-30T19:15:04Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eadb1d777cf8f36cb06f571558f07fca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f6d8359d-8df3-4592-86ee-ccda3b5481c9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "245443d9-8616-4013-8a1d-e7aeddc0fab6", + "lastUpdateDateTime": "2021-06-29T19:15:06Z", + "createdDateTime": "2021-06-29T19:15:04Z", + "expirationDateTime": "2021-06-30T19:15:04Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3f23b63482b7956ede40031212fda6e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4a896843-2450-46a9-98f3-8363fe88ca0e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "245443d9-8616-4013-8a1d-e7aeddc0fab6", + "lastUpdateDateTime": "2021-06-29T19:15:06Z", + "createdDateTime": "2021-06-29T19:15:04Z", + "expirationDateTime": "2021-06-30T19:15:04Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "264dbef600d662255cfc18936925be16", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0a9fb792-4318-4260-ad9d-5aa48d956697", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "245443d9-8616-4013-8a1d-e7aeddc0fab6", + "lastUpdateDateTime": "2021-06-29T19:15:06Z", + "createdDateTime": "2021-06-29T19:15:04Z", + "expirationDateTime": "2021-06-30T19:15:04Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "70e485e5154cf5eeaf450bb87859e1b3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cedb256a-fb42-4054-8577-b1998719cad3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "245443d9-8616-4013-8a1d-e7aeddc0fab6", + "lastUpdateDateTime": "2021-06-29T19:15:06Z", + "createdDateTime": "2021-06-29T19:15:04Z", + "expirationDateTime": "2021-06-30T19:15:04Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9a1f70c959a234f391c0e2ba69da2cb9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "89482111-4e45-4650-8885-dd52ae0b5807", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "245443d9-8616-4013-8a1d-e7aeddc0fab6", + "lastUpdateDateTime": "2021-06-29T19:15:06Z", + "createdDateTime": "2021-06-29T19:15:04Z", + "expirationDateTime": "2021-06-30T19:15:04Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c2ded813519e09acf577690f46dea02", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a76051fc-da47-4877-ac50-05c8dc5edc71", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "245443d9-8616-4013-8a1d-e7aeddc0fab6", + "lastUpdateDateTime": "2021-06-29T19:15:06Z", + "createdDateTime": "2021-06-29T19:15:04Z", + "expirationDateTime": "2021-06-30T19:15:04Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f9ca651b24058c7391afdf8b32348bd5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b1ae5f8d-443a-4721-a40a-ad42be3d98aa", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "245443d9-8616-4013-8a1d-e7aeddc0fab6", + "lastUpdateDateTime": "2021-06-29T19:15:06Z", + "createdDateTime": "2021-06-29T19:15:04Z", + "expirationDateTime": "2021-06-30T19:15:04Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8b365119542c949ad53eca4be2634024", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3afd86b5-e3bf-46dc-a5f6-3243ddd76a67", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "245443d9-8616-4013-8a1d-e7aeddc0fab6", + "lastUpdateDateTime": "2021-06-29T19:15:06Z", + "createdDateTime": "2021-06-29T19:15:04Z", + "expirationDateTime": "2021-06-30T19:15:04Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "049fe0d633105db479a1fb69560fae9b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0bc33b1f-aad2-4a79-8cb0-6c7ad9f72af7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15: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": "245443d9-8616-4013-8a1d-e7aeddc0fab6", + "lastUpdateDateTime": "2021-06-29T19:15:37Z", + "createdDateTime": "2021-06-29T19:15:04Z", + "expirationDateTime": "2021-06-30T19:15:04Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/245443d9-8616-4013-8a1d-e7aeddc0fab6", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a276a1cc5f36c7d5cb3523c65928a92e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3991c2d8-8225-40ed-9e88-6ef0370426ed", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:10 GMT", + "Date": "Tue, 29 Jun 2021 19:15:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "29" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "59" }, "ResponseBody": { - "jobId": "71b0652e-2bed-4919-bd86-dba7441ef127", - "lastUpdateDateTime": "2021-06-03T18:11:10Z", - "createdDateTime": "2021-06-03T18:10:22Z", - "expirationDateTime": "2021-06-04T18:10:22Z", + "jobId": "245443d9-8616-4013-8a1d-e7aeddc0fab6", + "lastUpdateDateTime": "2021-06-29T19:15:37Z", + "createdDateTime": "2021-06-29T19:15:04Z", + "expirationDateTime": "2021-06-30T19:15:04Z", "status": "succeeded", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:10Z" - }, "completed": 1, "failed": 0, "inProgress": 0, "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:11:10.6738326Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:15:37.1292198Z", + "taskName": "KeyPhraseExtraction_latest", "state": "succeeded", "results": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTestAsync.json index 2184e3ce52b7..028c2a4cdf72 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "241", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-68bffa7f4c765c4f8839fd5e28d818d4-d6ffd83a2e3c204a-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-2ca1759a28e72c49ab5282c1cd5bd0f1-30d41f598b7d4741-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f64d021068f23b47239dc64d32ac0d55", "x-ms-return-client-request-id": "true" }, @@ -38,50 +38,46 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "216f9c6a-4002-4702-96c5-3fd91dd48ba8", - "Date": "Thu, 03 Jun 2021 18:11:10 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", + "apim-request-id": "d545512c-5f07-455d-9485-9a1b64e827d5", + "Date": "Tue, 29 Jun 2021 19:02:04 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b72135c1-560b-4684-8159-fbb25449916c", "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": "204" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b72135c1-560b-4684-8159-fbb25449916c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "326f6a53ce870c398bb9ee51f13f5560", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e9cabf8b-07ec-44f3-b6f3-c15ea6c50a6d", + "apim-request-id": "202c492e-387b-455b-ac08-c6844e471571", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:10 GMT", + "Date": "Tue, 29 Jun 2021 19:02: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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:11Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", + "jobId": "b72135c1-560b-4684-8159-fbb25449916c", + "lastUpdateDateTime": "2021-06-29T19:02:05Z", + "createdDateTime": "2021-06-29T19:02:04Z", + "expirationDateTime": "2021-06-30T19:02:04Z", "status": "notStarted", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:11Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -90,39 +86,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b72135c1-560b-4684-8159-fbb25449916c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4d2db5835d6ee56b0a068d1cd4f24286", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1097491c-c822-45df-aca1-a7fc5c99b771", + "apim-request-id": "1e68f6f8-d88a-4f6d-86d0-39aa24096c00", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:11 GMT", + "Date": "Tue, 29 Jun 2021 19:02: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": "272" }, "ResponseBody": { - "jobId": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", + "jobId": "b72135c1-560b-4684-8159-fbb25449916c", + "lastUpdateDateTime": "2021-06-29T19:02:05Z", + "createdDateTime": "2021-06-29T19:02:04Z", + "expirationDateTime": "2021-06-30T19:02:04Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -131,39 +123,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b72135c1-560b-4684-8159-fbb25449916c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "84470c68f8b742c6c8406a3979f549e3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "93df990a-f309-46c6-ba28-4955ae9ecdd6", + "apim-request-id": "88ea3b63-1efa-487b-8d41-2b662f9079e5", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:12 GMT", + "Date": "Tue, 29 Jun 2021 19:02:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", + "jobId": "b72135c1-560b-4684-8159-fbb25449916c", + "lastUpdateDateTime": "2021-06-29T19:02:05Z", + "createdDateTime": "2021-06-29T19:02:04Z", + "expirationDateTime": "2021-06-30T19:02:04Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -172,39 +160,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b72135c1-560b-4684-8159-fbb25449916c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7dc96647c07ef5e7fe892880411d3899", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "088d8aac-abba-40c3-b11d-385c8b6ba215", + "apim-request-id": "5b780a71-538c-417f-bfa9-c3f5b02b8a87", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:14 GMT", + "Date": "Tue, 29 Jun 2021 19:02:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { - "jobId": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", + "jobId": "b72135c1-560b-4684-8159-fbb25449916c", + "lastUpdateDateTime": "2021-06-29T19:02:05Z", + "createdDateTime": "2021-06-29T19:02:04Z", + "expirationDateTime": "2021-06-30T19:02:04Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -213,39 +197,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b72135c1-560b-4684-8159-fbb25449916c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e4e86876d1f78ba8eeeb842df2326c15", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9a92f55a-ba5a-4e56-9009-4eb3104093f8", + "apim-request-id": "e41a92a6-4f39-49d7-9461-9ae767341458", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:15 GMT", + "Date": "Tue, 29 Jun 2021 19:02:08 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": "7" }, "ResponseBody": { - "jobId": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", + "jobId": "b72135c1-560b-4684-8159-fbb25449916c", + "lastUpdateDateTime": "2021-06-29T19:02:05Z", + "createdDateTime": "2021-06-29T19:02:04Z", + "expirationDateTime": "2021-06-30T19:02:04Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -254,39 +234,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b72135c1-560b-4684-8159-fbb25449916c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6ed4aabdc428a8072551852ed04501ab", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "23964499-b62e-408f-b832-8315c90967b8", + "apim-request-id": "a0ecf2d6-b723-4f49-91fc-23a6f42541aa", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:16 GMT", + "Date": "Tue, 29 Jun 2021 19:02: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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", + "jobId": "b72135c1-560b-4684-8159-fbb25449916c", + "lastUpdateDateTime": "2021-06-29T19:02:05Z", + "createdDateTime": "2021-06-29T19:02:04Z", + "expirationDateTime": "2021-06-30T19:02:04Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -295,39 +271,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b72135c1-560b-4684-8159-fbb25449916c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "11c2d108650c76ebbd3e8e933bba02cc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "05e4476b-4e52-404b-ac4c-301dfc8bd72e", + "apim-request-id": "36a90d95-9d50-4e65-a4a7-e7f9f1e45bce", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:17 GMT", + "Date": "Tue, 29 Jun 2021 19:02: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": "8" }, "ResponseBody": { - "jobId": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", + "jobId": "b72135c1-560b-4684-8159-fbb25449916c", + "lastUpdateDateTime": "2021-06-29T19:02:05Z", + "createdDateTime": "2021-06-29T19:02:04Z", + "expirationDateTime": "2021-06-30T19:02:04Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -336,39 +308,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b72135c1-560b-4684-8159-fbb25449916c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "96c3121dca48b1706040bfa64c7abba9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "978e4fa5-36d9-4030-a22c-588dfcfea0f1", + "apim-request-id": "a1e32f8a-8406-4cca-958f-3f6280aeccb4", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:18 GMT", + "Date": "Tue, 29 Jun 2021 19:02: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": "49" }, "ResponseBody": { - "jobId": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", + "jobId": "b72135c1-560b-4684-8159-fbb25449916c", + "lastUpdateDateTime": "2021-06-29T19:02:05Z", + "createdDateTime": "2021-06-29T19:02:04Z", + "expirationDateTime": "2021-06-30T19:02:04Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -377,39 +345,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b72135c1-560b-4684-8159-fbb25449916c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2125d8ea5a6f5708be5eb0ea35746c6a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "79054613-9927-4629-a15d-9a60b6839a69", + "apim-request-id": "a07c611a-d388-4e13-bf5f-d8c0a50a8059", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:19 GMT", + "Date": "Tue, 29 Jun 2021 19:02:13 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": "323" }, "ResponseBody": { - "jobId": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", + "jobId": "b72135c1-560b-4684-8159-fbb25449916c", + "lastUpdateDateTime": "2021-06-29T19:02:05Z", + "createdDateTime": "2021-06-29T19:02:04Z", + "expirationDateTime": "2021-06-30T19:02:04Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -418,39 +382,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b72135c1-560b-4684-8159-fbb25449916c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bd10b84e6a813e636010b0cca5452943", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8bb117ee-b305-45fe-8d4f-59f032b2559a", + "apim-request-id": "b9a45628-4f6a-44c8-98f3-8b55d0c0d4c1", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:20 GMT", + "Date": "Tue, 29 Jun 2021 19:02:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { - "jobId": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", + "jobId": "b72135c1-560b-4684-8159-fbb25449916c", + "lastUpdateDateTime": "2021-06-29T19:02:05Z", + "createdDateTime": "2021-06-29T19:02:04Z", + "expirationDateTime": "2021-06-30T19:02:04Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -459,39 +419,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b72135c1-560b-4684-8159-fbb25449916c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "63a8e582e195c25c096bd8e919867bec", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bf621037-d104-401c-aff2-69bf4e2be28c", + "apim-request-id": "3695be75-9671-407b-8975-d7290f7605a2", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:21 GMT", + "Date": "Tue, 29 Jun 2021 19:02:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", + "jobId": "b72135c1-560b-4684-8159-fbb25449916c", + "lastUpdateDateTime": "2021-06-29T19:02:05Z", + "createdDateTime": "2021-06-29T19:02:04Z", + "expirationDateTime": "2021-06-30T19:02:04Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -500,39 +456,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b72135c1-560b-4684-8159-fbb25449916c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "935754d3fe69802774e6c05fa93cb278", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "07a8655d-8d8f-4655-957e-0dade02ee4d4", + "apim-request-id": "4996d2b2-5036-4ff6-b31c-293d98e66342", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:22 GMT", + "Date": "Tue, 29 Jun 2021 19:02:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", + "jobId": "b72135c1-560b-4684-8159-fbb25449916c", + "lastUpdateDateTime": "2021-06-29T19:02:05Z", + "createdDateTime": "2021-06-29T19:02:04Z", + "expirationDateTime": "2021-06-30T19:02:04Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -541,39 +493,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b72135c1-560b-4684-8159-fbb25449916c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "50676d3509cb6dd55c4db315917a24da", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d1e98529-7b82-4b8d-bcac-06b716d9a367", + "apim-request-id": "01cf113d-3be7-4b7b-918c-a83090b13a19", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:23 GMT", + "Date": "Tue, 29 Jun 2021 19:02:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", + "jobId": "b72135c1-560b-4684-8159-fbb25449916c", + "lastUpdateDateTime": "2021-06-29T19:02:05Z", + "createdDateTime": "2021-06-29T19:02:04Z", + "expirationDateTime": "2021-06-30T19:02:04Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -582,39 +530,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b72135c1-560b-4684-8159-fbb25449916c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "50f9c49495ed84d9bd28eeae20fd19cd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c417f2e1-17e3-46e6-aa74-7ebe39f95e27", + "apim-request-id": "9f073f2e-e48d-4529-aa29-5dacb3cc80d9", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:24 GMT", + "Date": "Tue, 29 Jun 2021 19:02: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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", + "jobId": "b72135c1-560b-4684-8159-fbb25449916c", + "lastUpdateDateTime": "2021-06-29T19:02:05Z", + "createdDateTime": "2021-06-29T19:02:04Z", + "expirationDateTime": "2021-06-30T19:02:04Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -623,39 +567,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b72135c1-560b-4684-8159-fbb25449916c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "acb460b92b1ec9207fea371b4a12effa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ea063f9a-f83d-45c7-98f2-40279010b730", + "apim-request-id": "2bf757dd-0e2f-4506-b6a1-5db0c913b16b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:25 GMT", + "Date": "Tue, 29 Jun 2021 19:02:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { - "jobId": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", + "jobId": "b72135c1-560b-4684-8159-fbb25449916c", + "lastUpdateDateTime": "2021-06-29T19:02:05Z", + "createdDateTime": "2021-06-29T19:02:04Z", + "expirationDateTime": "2021-06-30T19:02:04Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -664,39 +604,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b72135c1-560b-4684-8159-fbb25449916c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e4cbe6c261439f8a93e292a21a274c5f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3c9e648c-40e7-4841-bfa5-1fbde2b4b76d", + "apim-request-id": "eb2ac48f-743d-4e86-9842-43def7200112", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:26 GMT", + "Date": "Tue, 29 Jun 2021 19:02:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", + "jobId": "b72135c1-560b-4684-8159-fbb25449916c", + "lastUpdateDateTime": "2021-06-29T19:02:05Z", + "createdDateTime": "2021-06-29T19:02:04Z", + "expirationDateTime": "2021-06-30T19:02:04Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -705,39 +641,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b72135c1-560b-4684-8159-fbb25449916c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "315ce53477c568bba42fd1035ebd3aab", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "91dc74ce-e0d4-472b-8780-9765efe30903", + "apim-request-id": "2eb884e8-05d1-448c-9c16-408eb1c53252", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:27 GMT", + "Date": "Tue, 29 Jun 2021 19:02:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { - "jobId": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", + "jobId": "b72135c1-560b-4684-8159-fbb25449916c", + "lastUpdateDateTime": "2021-06-29T19:02:05Z", + "createdDateTime": "2021-06-29T19:02:04Z", + "expirationDateTime": "2021-06-30T19:02:04Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -746,39 +678,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b72135c1-560b-4684-8159-fbb25449916c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "39ecf3393432578ad515183c997dae58", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5f36de63-71df-4814-875f-701a0973d5e1", + "apim-request-id": "198db909-3dfa-4fa3-a08c-c2120ff59a9a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:28 GMT", + "Date": "Tue, 29 Jun 2021 19:02:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", + "jobId": "b72135c1-560b-4684-8159-fbb25449916c", + "lastUpdateDateTime": "2021-06-29T19:02:05Z", + "createdDateTime": "2021-06-29T19:02:04Z", + "expirationDateTime": "2021-06-30T19:02:04Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -787,39 +715,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b72135c1-560b-4684-8159-fbb25449916c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "64e6d89dbdb64a342b624013908740d6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e0128be8-098e-4c21-af2f-65d8bd0df74d", + "apim-request-id": "d33ae51d-c513-4d77-b22d-5565aee1666c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:29 GMT", + "Date": "Tue, 29 Jun 2021 19:02:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", + "jobId": "b72135c1-560b-4684-8159-fbb25449916c", + "lastUpdateDateTime": "2021-06-29T19:02:05Z", + "createdDateTime": "2021-06-29T19:02:04Z", + "expirationDateTime": "2021-06-30T19:02:04Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -828,39 +752,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b72135c1-560b-4684-8159-fbb25449916c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2769e6a8133a002d5b045cb05f7fcf26", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a9e8e943-21d7-4c61-8506-13e34e4f6ee0", + "apim-request-id": "4ecb2c5b-6789-4f72-8214-a90dbcf5d776", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:30 GMT", + "Date": "Tue, 29 Jun 2021 19:02:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", + "jobId": "b72135c1-560b-4684-8159-fbb25449916c", + "lastUpdateDateTime": "2021-06-29T19:02:05Z", + "createdDateTime": "2021-06-29T19:02:04Z", + "expirationDateTime": "2021-06-30T19:02:04Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -869,39 +789,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b72135c1-560b-4684-8159-fbb25449916c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "85657981d5d67bf5bfa10ecff376c74d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fed37006-726f-4918-9292-c1005fbb926e", + "apim-request-id": "9df0a42d-3b7e-4c00-b2d6-6f0270db85c4", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:31 GMT", + "Date": "Tue, 29 Jun 2021 19:02:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", + "jobId": "b72135c1-560b-4684-8159-fbb25449916c", + "lastUpdateDateTime": "2021-06-29T19:02:05Z", + "createdDateTime": "2021-06-29T19:02:04Z", + "expirationDateTime": "2021-06-30T19:02:04Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -910,203 +826,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b72135c1-560b-4684-8159-fbb25449916c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b29342d487148a1dabe609b16183ebac", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cca483e5-e8dc-4202-a394-8821cc09bfbb", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11: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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "17921a92bb22d3fff1ed6798045d0de5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1aa73816-bcd4-4ac8-8284-94d9ddb1ad8d", + "apim-request-id": "40d5e468-24a1-4e82-9013-8acf576515a7", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:33 GMT", + "Date": "Tue, 29 Jun 2021 19:02:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1cdc0e3d1debf9125bdad9f0cb43193b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "770beaa4-d478-4b8a-a8c2-6ae7e119e84e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11: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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d93c62b6afe4182b43c0c0261f84864e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "764340d0-6eea-411a-bce4-2be115dbb074", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11: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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "537323d8cea775c00898bb47e10f07ad", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "7bdf4c9f-b7bf-431d-b377-cb54250d1f89", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11: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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", + "jobId": "b72135c1-560b-4684-8159-fbb25449916c", + "lastUpdateDateTime": "2021-06-29T19:02:05Z", + "createdDateTime": "2021-06-29T19:02:04Z", + "expirationDateTime": "2021-06-30T19:02:04Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -1115,203 +863,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b72135c1-560b-4684-8159-fbb25449916c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a2e22cd334208e00e3c3d92b5cebdad6", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "17921a92bb22d3fff1ed6798045d0de5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0bb51f44-af39-487c-afb0-630e557d42de", + "apim-request-id": "8dbb0bbc-c384-4c8a-bf7b-be0686adb06c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:38 GMT", + "Date": "Tue, 29 Jun 2021 19:02:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a8178b54c6cfe793a1c6d04cf3e33733", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e1bf25d4-d200-454c-94be-a64d4d558cf5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11: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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f25313b8e3a2a42d22e56fe3f595191c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c40e2bb9-d9ba-44ac-acac-275f3217d552", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11: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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "56f3e4bd5ff70ddd99fa015963b49aff", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c3d6f3cc-9ca9-45f6-8d44-ba70110783e9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:41 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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4972a58ce79870345d7385e956b0f20b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b453ce48-80f1-460b-a687-ce0054954335", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:42 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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", + "jobId": "b72135c1-560b-4684-8159-fbb25449916c", + "lastUpdateDateTime": "2021-06-29T19:02:05Z", + "createdDateTime": "2021-06-29T19:02:04Z", + "expirationDateTime": "2021-06-30T19:02:04Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -1320,1564 +900,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/b72135c1-560b-4684-8159-fbb25449916c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0e8eb3ade0f0593c354659a8e2d4406e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c4d029ed-9003-4675-a7ac-54eaa131486a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11: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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5056704bd023d584b082f883daf3b6e8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "882e981d-60e3-4fcf-94ae-3edf1b61fc77", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:44 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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "afacf5078b26ab0f681813528e8c8e89", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ec7a66f8-d899-4ace-bb77-93ac0e1f9895", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:46 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - }, - "ResponseBody": { - "jobId": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e69e1732a259dce72fb85e6de8b87f41", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6fe40b70-dc85-46f2-a463-e362f946ba7d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11: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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "eca0708f9027c04760aae70abc324724", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f50d0055-2569-47c4-9cd8-e9e79abe5bba", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:48 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "75" - }, - "ResponseBody": { - "jobId": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c2516ef3cf55658f0ecf806e2da1c3b0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "74941544-babc-4f12-87b8-2cfba7214609", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11: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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1dc2d299a2eba262cfde86aebbdd1ffc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "950be1fc-81f8-43d0-b2f5-f2839a52c7fb", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11: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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "79793971bc67bfebe13bde570fd992be", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "da63011a-baee-4595-aaa2-7d871487328b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11: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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ea7136e7297051380caef37749e1aa30", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "aef93615-4612-4113-8531-6ad5c105a62c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11: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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f3fc84af4927dd48e6023cb0c40a92f6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "7313ba5d-a824-48b8-9441-228fe36e30c0", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11: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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "84c6c74b356c478c00286db8c9747600", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f45f04ca-92cc-484d-b040-80af54fe9760", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:54 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" - }, - "ResponseBody": { - "jobId": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8ba7ad909fdc9d96ed94036dec888c02", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "48f45a8c-50a7-4dd3-aa31-39333a97ee90", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:55 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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "822bfc1c251a7ac4f8b5f2ffdc901372", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "589f425e-e6f9-4ef4-8a99-5d4172f36702", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11:56 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - }, - "ResponseBody": { - "jobId": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "171f3c8c0662ab19302996d7321e5a78", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "567de528-afb6-4ba2-9ace-f2544f1c94b1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11: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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "cc9c6a9bf4486be5e82d9227ad97c15d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a6eee34d-0b7e-428a-a6b0-823d06645412", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11: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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b0e191807569159fe38051f18fec47da", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a21db2a6-dc5b-4e68-a165-615963f4bde6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:11: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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7163795a47f4972956b42e3473f2fe99", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "dde8f195-52a0-4b22-88fa-abe8d2e15ec9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:12:00 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" - }, - "ResponseBody": { - "jobId": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a0573968aa3c250fcb86e9c8a3f4dcfb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c9e90208-2b1e-4e01-bfdc-455d07b7f97e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:12:01 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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "33cdb8e64f333869674959b5476aa1f1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6d97aaa8-45ce-48c9-904a-8e54222eb228", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:12: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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5689b781a695af9d6a3da66d5e60f462", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3e1d5c98-f8c1-4940-a95a-2ed4e4d3e2d3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:12:04 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - }, - "ResponseBody": { - "jobId": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "bb4e33d7ca241866cf1e39f2515ade60", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5cfa9d18-234d-4bc7-bed4-7ab583af09fd", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:12: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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "eb46f7e4866b3f651a1dc8f5a8fbda07", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1254f003-e1cb-47c9-a2a9-dd24e1d63bc3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:12:06 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - }, - "ResponseBody": { - "jobId": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "13ddf654e61bb7cc517086766dab5d10", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b3536852-964a-478d-9068-b1572cce9190", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:12: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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6689455e091a51f6cd0fa00701706fd4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0599f587-e872-4163-8340-f7cfd89e5b51", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:12: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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5a9d3144cb7cfe442b8f9afbffefd16f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "990127fb-ace5-4d64-a7eb-3f0e900a3f0b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:12:09 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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6396b8c074724bec008b460c45c5b5e0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "52271a7c-4eb5-4f8b-a0bd-ff7cb7779c28", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:12: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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3b32b200020d9393008a3a8a6ffb52de", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "173c56c7-4a9a-45e5-b0c4-728b0ea97842", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:12: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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4946313d0cd9cf6145525af18438b866", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "828c86d5-fea6-4bb3-a206-9291767c6d25", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:12:12 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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4dfbb9da96bcbd61240262e73962dc05", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ad8c2aca-ef49-45b9-8b24-513473143932", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:12: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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "13cf68396b7ef3075062f6baa8a20fc8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a228749c-6b9b-4d8d-9ae5-8f107802ddfe", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:12: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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b5afd4d20400a721cf8924d6a97a96e2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9fbe3f78-6643-4b01-80ec-5eb3b093a993", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:12: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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1cb85576a4686fe7b107fd599fa61582", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "96034628-48c6-4b2c-8e76-f8eefd9280be", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:12: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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "64159af326b23405462743f5463049d6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ad2daf86-8f56-4b21-a5f2-61a963e9ed4b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:12:17 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - }, - "ResponseBody": { - "jobId": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "534414ccf2e92d5fec4003f807c80729", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c547a777-a8b3-4563-81b4-b24ca4af5745", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:12: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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0fe2a2743265502f5083d64060f22881", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c8dac2e2-e0e9-4c58-89e2-3a852592e5b8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:12: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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8b8d27bdc26201983ae77771220c2d7d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "be3f6e94-4e63-4576-870e-bc7e188a8fb5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:12: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": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a4811a1f394d9970e4f402661b1eccfa", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c4c0ce9d-8459-46cd-9911-e7c0ca2c20ec", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:12:21 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - }, - "ResponseBody": { - "jobId": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:11:12Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:11:12Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/59e3ca31-8348-424e-8ed2-576e34d70fe8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e03b82187c3ab1c609e1d57dbabe2e43", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1cdc0e3d1debf9125bdad9f0cb43193b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d093477c-103e-4d8b-803b-a60aa800246d", + "apim-request-id": "7c526b22-3aee-40bc-b19c-2f5f47d34709", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:12:27 GMT", + "Date": "Tue, 29 Jun 2021 19:02:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5070" + "x-envoy-upstream-service-time": "65" }, "ResponseBody": { - "jobId": "59e3ca31-8348-424e-8ed2-576e34d70fe8", - "lastUpdateDateTime": "2021-06-03T18:12:22Z", - "createdDateTime": "2021-06-03T18:11:11Z", - "expirationDateTime": "2021-06-04T18:11:11Z", + "jobId": "b72135c1-560b-4684-8159-fbb25449916c", + "lastUpdateDateTime": "2021-06-29T19:02:30Z", + "createdDateTime": "2021-06-29T19:02:04Z", + "expirationDateTime": "2021-06-30T19:02:04Z", "status": "succeeded", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-06-03T18:12:22Z" - }, "completed": 1, "failed": 0, "inProgress": 0, "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:12:22.4716661Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:02:30.4901169Z", + "taskName": "KeyPhraseExtraction_latest", "state": "succeeded", "results": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithActionName(False).json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithActionName(False).json new file mode 100644 index 000000000000..bd78f33c9fc1 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithActionName(False).json @@ -0,0 +1,9012 @@ +{ + "Entries": [ + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "602", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-c48f65a627b7904ba4bee0f5f4d0b67c-08a9c26ccc9b9948-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6be4add576a73063a8522736a22b8687", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "Elon Musk is the CEO of SpaceX and Tesla.", + "language": "en" + }, + { + "id": "1", + "text": "Tesla stock is up by 400% this year.", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": {} + } + ], + "entityLinkingTasks": [ + { + "parameters": { + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "sentimentAnalysisTasks": [ + { + "parameters": { + "stringIndexType": "Utf16CodeUnit" + } + } + ] + }, + "displayName": "AnalyzeOperationWithMultipleTasks" + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "a391361e-b06e-46e0-ad68-240887949439", + "Date": "Tue, 29 Jun 2021 19:12:32 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "432" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd9026e08c4efa700d055680ebc46371", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "84244318-5a6c-4ab2-8111-4605163cef39", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:33Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "notStarted", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 5, + "total": 5 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3e1f199ca3c6394eb1d021601c44c0fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b1236cd7-aaa3-4a67-aab2-0493be800eda", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:33 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": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:34Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6544ebfe1efb48553ce95ea21fe244e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b8f9d3c5-5cf1-48e1-bd3a-4aad0c84af84", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "74" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:35Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8999b5ef480b3cc0d7562c7d6b10ddc8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "424e4887-d6d5-402e-82cd-5d5ae98ab476", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "51" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:36Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "00825a44fd7f7d76c3d701dd44ac1ace", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "77435824-8488-4531-9d0a-ad4f982730d9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "54" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:36Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "67713c8b37aab5f12b078da4f2d8dd2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7f7e11b2-1287-4020-9f17-53f05b1f3f3b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "65" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:36Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c45d950b4460f1643f1bc63446e2f82a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3ede5458-1f3e-41d4-9bd7-328c8d780de2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "58" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:36Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2ef15d3c769e0d1e69ccd4786fd18bea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ea35f000-cad0-4777-ae0f-81982812cdab", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "58" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:36Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aed2d4f9554f466ed87f278e71bd6f48", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3ad16cb8-6e83-472e-bf7a-d7d446e57e26", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "51" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:36Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9468620fafe6948d77505b936fec816e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "039d61ae-8a79-48ab-a051-80b35b4873bc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "51" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:36Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "723adb904910e6dbeeaa561f4f8f9cac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "31d219f1-5431-442d-affe-fd866bc49ad7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "58" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:36Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0c698c5df6684a04463d37fff9dbd7eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "22ae2c7a-8f25-48e7-ac35-369bcbc67197", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "53" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:36Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "95feb9fdfc82c5378781a63c586e45e8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "53f41430-0359-477d-915b-8d2ec069bcb1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "59" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:36Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e336afb374829905d7ef2bd311dced13", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3b91d575-3c7f-4bcd-9491-d08b7833eed3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "61" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:36Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "95216ad30690602954a385e650c7f1d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "474cc368-7fb9-443f-b4de-4286a4937a67", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "125" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:36Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4a4b4ff8f3a58868b464be92d164b3ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "94c317fb-0f86-4683-b3c8-f3cc218dcf26", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "125" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:49Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 3, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:49.7689363Z", + "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-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee689294af4cad5785d58edfef1e490f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7b5bcfa7-1574-4797-959c-4e1d8c611645", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "163" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:49Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 3, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:49.7689363Z", + "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-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c2da53fda290e06e0198e12b48968ff0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9e1ab621-c7ea-4b4a-aba6-9e434fe8eabf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "149" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:52Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:49.7689363Z", + "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-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:52.378187Z", + "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.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bd52d9ef035f488bf79ec5cf64899995", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5224f8b7-bece-4bdd-bf4a-accb676bee32", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "226" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:52Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:49.7689363Z", + "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-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:52.9062833Z", + "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-06-29T19:12:52.378187Z", + "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.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7d94af1bf089f21b2488ecb3ce2b65ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a361e765-3698-409c-b704-e03108e3b519", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:54 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": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:52Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:49.7689363Z", + "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-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:52.9062833Z", + "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-06-29T19:12:52.378187Z", + "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.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "15f09e468cccfab0c792cbf2dc9e7b78", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "04015c28-71ca-4fd7-bb76-7fa52576998a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "190" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:52Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:49.7689363Z", + "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-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:52.9062833Z", + "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-06-29T19:12:52.378187Z", + "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.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "98104bff1101fe66be5f98d617d77acb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d2f21b5c-75ee-429e-a872-7d1f6e64e20f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "214" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:52Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:49.7689363Z", + "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-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:52.9062833Z", + "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-06-29T19:12:52.378187Z", + "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.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c689d63983998ec9ff9ab5f725291585", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "44397e44-7902-4556-aed6-025cc30bc7dd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "269" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:52Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:49.7689363Z", + "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-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:52.9062833Z", + "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-06-29T19:12:52.378187Z", + "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.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "82b4730dcc1a34ec37f1566cf4d9e2f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "26ff5965-be3e-4089-9aa9-4eb2c42d2946", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "202" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:52Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:49.7689363Z", + "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-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:52.9062833Z", + "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-06-29T19:12:52.378187Z", + "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.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "06b8ff17b4157cde828299665b6fd995", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "01024301-81bb-439d-b735-4c88757b3ff7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "245" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:52Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:49.7689363Z", + "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-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:52.9062833Z", + "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-06-29T19:12:52.378187Z", + "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.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a3c91249f8236db1e9548ea72c5c9a25", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e0d81e27-03bb-440e-b1f7-4058e0652765", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "217" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:52Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:49.7689363Z", + "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-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:52.9062833Z", + "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-06-29T19:12:52.378187Z", + "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.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "25dfc5b80f7058709538ff983285d9c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7d9ceb90-bbf8-42a2-b6a5-ea0b9c048281", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "216" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:52Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:49.7689363Z", + "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-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:52.9062833Z", + "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-06-29T19:12:52.378187Z", + "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.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e123c1183e0f1fcc4e4b1cc026364f26", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8233f2ed-e7ee-494e-b5bc-a7b93491ad01", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "209" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:52Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:49.7689363Z", + "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-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:52.9062833Z", + "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-06-29T19:12:52.378187Z", + "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.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "95ae74e7b3903a25a1710eebf8183a63", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5106faf3-006a-4511-8343-77433d0edaf0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "219" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:52Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:49.7689363Z", + "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-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:52.9062833Z", + "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-06-29T19:12:52.378187Z", + "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.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6b8fc67bb8387916f9bfd724f2b0315e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ff42b233-55f8-4d0f-8d11-64c5db7d746e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "213" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:52Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:49.7689363Z", + "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-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:52.9062833Z", + "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-06-29T19:12:52.378187Z", + "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.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "beb0d9e843d765389be93f9e30e02635", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "36a6cb9d-a5e4-422e-99b6-e3ea0055963c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "192" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:52Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:49.7689363Z", + "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-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:52.9062833Z", + "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-06-29T19:12:52.378187Z", + "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.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6044b911e3a72fed5d359cd0db0147f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2cebe132-a637-49d6-924c-cb0265d8a7fd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "204" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:52Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:49.7689363Z", + "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-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:52.9062833Z", + "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-06-29T19:12:52.378187Z", + "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.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1f02b03f7c68388c8e2ad04f78774918", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f4356e6b-36b5-4c04-9bea-8e1408ae65a0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "213" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:52Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:49.7689363Z", + "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-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:52.9062833Z", + "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-06-29T19:12:52.378187Z", + "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.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3913a299d16b05b6eb8160a1a667899a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9910621d-cc8e-4515-8be6-29f3cd170cd6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "209" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:52Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:49.7689363Z", + "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-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:52.9062833Z", + "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-06-29T19:12:52.378187Z", + "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.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7f5f4ea106de94cc2c0bd27d139db6e6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "61aacc17-edff-46fe-bb24-f9d853b9ad78", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "254" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:52Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:49.7689363Z", + "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-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:52.9062833Z", + "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-06-29T19:12:52.378187Z", + "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.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "393783ec0ded6d85f9fd34e71bea9126", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "72dd1cd8-6e3f-4b0a-a38c-35dc13566b21", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "206" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:52Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:49.7689363Z", + "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-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:52.9062833Z", + "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-06-29T19:12:52.378187Z", + "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.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2aad35a0c918923ad57e0c5fff39f14d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "08d1c70a-7b2e-4b31-94be-7652e7a4781c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "217" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:52Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:49.7689363Z", + "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-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:52.9062833Z", + "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-06-29T19:12:52.378187Z", + "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.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "23b57aca4f3094acc8f186e0d2e57842", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "483a2621-0fe4-47d1-bc3a-d34ead9224eb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "272" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:12:52Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:49.7689363Z", + "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-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:52.9062833Z", + "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-06-29T19:12:52.378187Z", + "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.1/analyze/jobs/8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dedcab7a8cf023ce49a5646f00256ec0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c0a8a5a1-f1fb-4c34-9626-10bbebe8216c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:13:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "264" + }, + "ResponseBody": { + "jobId": "8ac4cdec-1fa8-4652-bcc4-5132df7aee89", + "lastUpdateDateTime": "2021-06-29T19:13:18Z", + "createdDateTime": "2021-06-29T19:12:33Z", + "expirationDateTime": "2021-06-30T19:12:33Z", + "status": "succeeded", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 5, + "failed": 0, + "inProgress": 0, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:49.7689363Z", + "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-06-29T19:12:34.3853189Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:52.9062833Z", + "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-06-29T19:12:52.378187Z", + "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" + } + } + ], + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:13:18.202726Z", + "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" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "313044794", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com/" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithActionName(False)Async.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithActionName(False)Async.json new file mode 100644 index 000000000000..89e804f9cb65 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithActionName(False)Async.json @@ -0,0 +1,13056 @@ +{ + "Entries": [ + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "602", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-ca14f6bebe84af4bb96fda1939ebf0ef-3440f1b9a00ea24a-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e0bc50078be5992ac087c874e8dc2995", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "Elon Musk is the CEO of SpaceX and Tesla.", + "language": "en" + }, + { + "id": "1", + "text": "Tesla stock is up by 400% this year.", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": {} + } + ], + "entityLinkingTasks": [ + { + "parameters": { + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "sentimentAnalysisTasks": [ + { + "parameters": { + "stringIndexType": "Utf16CodeUnit" + } + } + ] + }, + "displayName": "AnalyzeOperationWithMultipleTasks" + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "0e990a89-9b1d-4094-b10f-94876168ee9d", + "Date": "Tue, 29 Jun 2021 19:08:33 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "444" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "09268d7bc0b90efc446424de6d28939a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f9bd3fb5-bd6b-4cd0-97d2-a26f8559399c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08: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": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:33Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "notStarted", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 5, + "total": 5 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5bb8e46ec5c004f2188d305cfa86010d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "78ee9c99-d977-4cf1-b8f1-4456203b1936", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:35 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": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:35Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1818693fa2fe477754ae9c81664c2c98", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "422def92-7bbd-469e-8044-89bd3882e8fa", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:36 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": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:35Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "03062ef4ce23b6d49a21f02b909f13be", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ae1ef9f2-1349-4241-a290-b67f97564e0a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:37 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": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:35Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "049e16627a0fcc9b6c70071129719dcc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dcfb258f-c3d9-458b-bd59-4265dde96246", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "57" + }, + "ResponseBody": { + "jobId": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:35Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cc679760fd7f71ea94617ddcb24bb7b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6e30aa4f-e327-4eb1-92d2-55e767d96062", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:39 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": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:35Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "501edd9b28ae7989923a97b2c6c28c29", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6efa3507-8282-450b-8a1e-2ddb5610c265", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:40 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": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:35Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f8cb23844738643e2c2c6fadfcbf1920", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a8c0203f-cb09-4130-8577-bea3a0880eaf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08: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": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:35Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4b7652b94c52381e0eee39456637abd2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "434de6e5-b450-4133-872b-0ea977399475", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "110" + }, + "ResponseBody": { + "jobId": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:41Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 3, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8e5754d4be80537c9fb92481b8db7cd3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ccd4cfa7-1e82-431d-981d-c8762137a065", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:43 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": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:41Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 3, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "74f97620414b37d70492ea490ef8fef4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "989fb5d5-859f-4332-b193-a423b0ab2d27", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "122" + }, + "ResponseBody": { + "jobId": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:41Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 3, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a8d99d818a67faa0d623ac98289c8033", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ec751013-c650-4ffa-b828-8d028a20c5ed", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "141" + }, + "ResponseBody": { + "jobId": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:41Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 3, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f0256572363e93867c208aeed43345a6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d7727055-c22c-4e4f-b38d-ee01fe936e67", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:47 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": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:41Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 3, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1b002fbbd301956bd6fe9e28953e0e67", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "75b16b0c-c30e-4a30-b3b8-4abefa6a7305", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "107" + }, + "ResponseBody": { + "jobId": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:41Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 3, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a8d7b7120ed34ab616452b4600b125a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8172a63e-82fb-4f9a-8a8a-74b4915514b9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:49 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": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f8dc05dd649c9e31f990193f985dfe3d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0e92217e-3019-4ba4-8cbf-d3bc280a23b8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "193" + }, + "ResponseBody": { + "jobId": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1ddc22119c5badd378b504bca7259424", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3010cfe4-86dd-425b-af00-1223e4ea58ac", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "152" + }, + "ResponseBody": { + "jobId": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8f4afbd91562adcb8638ae42f477b2b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "69594237-a282-485b-bd73-e2ce064daaf8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:53 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": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "de34ee4708d54147312e7fe75f74f6d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ab4049bd-d8f9-43cb-b428-2bdcd8957c5e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "152" + }, + "ResponseBody": { + "jobId": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9d65f4fb6e12fbdb562e9722ed90b901", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c06f2ab2-ea8c-4633-821e-9e562fac0fe2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "150" + }, + "ResponseBody": { + "jobId": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b9754b03b5f0d04fb4095d3396e44e11", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d3e3d34f-2e85-433f-90e3-51d1559f3aba", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:56 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": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ff46da421511d8a6123988a7712453a1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "52ebc5f6-2d3c-4152-98d5-300c371e59de", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:58 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": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "14e37e753dff46e4a595e80911a86572", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a4399d92-ac3e-4173-a154-97a73a0b2b8b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:59 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": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "13e086dfb949edefa49ca7b72da75f8f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f481019e-b2fa-443d-85db-79f67e6cb6d8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:09:00 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": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "17bdbcb53a000511f500597c2c9dc769", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ea0c632c-e24b-464c-a37f-25ac35e74177", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:09:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "156" + }, + "ResponseBody": { + "jobId": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "eac715d33f43bb578ef56f62952d18fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0418dd8a-2f8d-46ed-863a-96f65c1ad8d6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:09:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "161" + }, + "ResponseBody": { + "jobId": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "545358354eeaa57174db1e495f73c107", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0c249287-484b-4ed0-aed2-dc00ab288ad4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:09:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "161" + }, + "ResponseBody": { + "jobId": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "17e33dd574df764c6402880acaae6fc8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "45b628e7-e6c8-4046-b85d-8a2dcda91878", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:09:05 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": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d3465be7724a857ea3217668210e5b1b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "749e69ca-6641-43c5-a3a9-93b33b632f8a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:09:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "198" + }, + "ResponseBody": { + "jobId": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "578c68340049c01e0cddf0e8c567dbc5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1d06cd35-0751-4918-8f5a-aea067bd851f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:09:07 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": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0361556bed2c63bdbf5e74befee45456", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4071d938-ad72-425c-9326-2ce694b10f2c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:09:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "251" + }, + "ResponseBody": { + "jobId": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "62d66ca61722e67e3d86c66c8196bf3c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5374df34-a233-47c6-8273-9cc129cce232", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:09:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "149" + }, + "ResponseBody": { + "jobId": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cbfcb04657ad46efaa2998ea8c5fc228", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "92bb8ab3-cc31-47b0-841e-100d5a421f10", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:09:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "2773" + }, + "ResponseBody": { + "jobId": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "58419a88789053a3d77ac5a62750e128", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "18295cb6-4d65-48fc-bbb9-31d413e0e57f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:09:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "150" + }, + "ResponseBody": { + "jobId": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4d77379f88e84ea87d8fb7f87f9359dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "09b611a5-a202-47da-a8bb-69d66a0eea7b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:09:16 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": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e7e39ec36654ceac0da8f43291491f5a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0da90b58-9c73-4d02-b9e2-0c35ec1dfe43", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:09:18 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": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "554b6f4775e80040f1f3db00c0aad443", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "727d0fdb-78e0-4439-9ba7-48d90a0fdb6c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:09:19 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": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "88e2e820f96c38d48ba8403f9376bc33", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "85ad690f-a360-4f8c-9b25-adc210c50cff", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:09:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "162" + }, + "ResponseBody": { + "jobId": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0fb05d7004484ef55de3f6618aab0d62", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bc7cc9f9-e8f8-4979-84e0-3a42dfe72eed", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:09:22 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": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a911b1d396674ded9b12ca3f35006d7a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0e77d829-5d51-45c0-8e21-b0afc7317cef", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:09:23 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": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6290a836c4f91cfaf2942a890373ade0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a75cdc42-375d-4c8d-99a9-3c121d79a6ac", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:09:24 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": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e16cdd9a1364d9cc706374353ab5195d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9c88e62c-fdfb-4f90-a39e-bee58df9a4cc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:09:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "148" + }, + "ResponseBody": { + "jobId": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e22a7b76ab1a0e68b6f5b6d36c644a28", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7f623554-fc32-49b0-bcf3-f6928bcbdd29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:09:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "156" + }, + "ResponseBody": { + "jobId": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "57a5ea648b942316dcb6f29650c4e13d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e360df4d-43bf-48a0-92c7-c61ba7d01e08", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:09:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "153" + }, + "ResponseBody": { + "jobId": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8712cd7acb48efc5755d2a6e5cf86d0b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5395abfa-9c47-4295-8e54-b04f4dc2ea0c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:09:29 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": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "50d14c18c210ebc965070663b8d1bef1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bf1b22cd-9bce-4556-bf63-6021f3984ae3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:09:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "156" + }, + "ResponseBody": { + "jobId": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9e587913c35199df24b5e23660a7c7e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f4aeabad-95dd-4f3b-8a78-d830c450d842", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:09:31 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": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "047ee64991f3b82d03272141c46136a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2b3632f9-cedc-454c-b285-eb8bd2ef2c3f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:09:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "387" + }, + "ResponseBody": { + "jobId": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e25a389fcea055ba6c372b5adf928abe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9d027967-d6b8-4e15-83af-8a7e92deb2c4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:09:34 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": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d21a2340b95382fe4b9f9b2aa19ed4c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d049ce9f-166b-4e9e-8322-b88cb83e9010", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:09:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "271" + }, + "ResponseBody": { + "jobId": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:08:49Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "27973e7ee44c7a422c2998bc66d2d870", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "da1c69c3-4523-49bf-8961-0cf620917c61", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:09:37 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": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:09:37Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a100639c6446e54f3ad897003390b3cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "eb46f7c1-c462-49de-8a92-2b47a5c555bf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:09:38 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": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:09:37Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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-06-29T19:09:37.4283218Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a1dc676363fb5c72e09fa62a21421b79", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3d5112ce-ee7a-42ef-adc3-28825c8a4681", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:09:39 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": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:09:37Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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-06-29T19:09:37.4283218Z", + "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.1/analyze/jobs/151c2cb3-729b-4b90-8b8e-9eae086faf59", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3e8d2ac7339e1a7ceeb1ec734c42479c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "069cdbfc-73e8-4b8b-be20-7d034ad3db0d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:09: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": "151c2cb3-729b-4b90-8b8e-9eae086faf59", + "lastUpdateDateTime": "2021-06-29T19:09:41Z", + "createdDateTime": "2021-06-29T19:08:33Z", + "expirationDateTime": "2021-06-30T19:08:33Z", + "status": "succeeded", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 5, + "failed": 0, + "inProgress": 0, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:49.3058128Z", + "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-06-29T19:08:34.6539079Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:41.85014Z", + "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-06-29T19:09:41.0498857Z", + "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" + } + } + ], + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:09:37.4283218Z", + "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" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1072078454", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com/" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithActionName(True).json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithActionName(True).json new file mode 100644 index 000000000000..90ca492be5b3 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithActionName(True).json @@ -0,0 +1,7581 @@ +{ + "Entries": [ + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "797", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-84ef21b1c51c9245b38c356d202b8d46-2527e3663231e440-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "63a84d0aa287327c252924f139c50b52", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "Elon Musk is the CEO of SpaceX and Tesla.", + "language": "en" + }, + { + "id": "1", + "text": "Tesla stock is up by 400% this year.", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "MyRecognizeEntitiesAction" + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "MyRecognizePiiEntitiesAction" + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": {}, + "taskName": "MyExtractKPAction" + } + ], + "entityLinkingTasks": [ + { + "parameters": { + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "MyRecognizeLinkedEntitiesAction" + } + ], + "sentimentAnalysisTasks": [ + { + "parameters": { + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "MyAnalyzeSentimentAction" + } + ] + }, + "displayName": "AnalyzeOperationWithMultipleTasks" + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "2cc469e0-0b6d-4c75-b32c-4b79c3bb9f6d", + "Date": "Tue, 29 Jun 2021 19:11:51 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "452" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d30c3b3466ba0bc47ab76bfcd921543", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f1e6da6b-ba81-4605-83b3-305dd066aa38", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:11: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": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:11:52Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "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.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e17f6fdc86a8a80032997bcb9360f34e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3aa3aeb5-af07-4f2f-bc9a-4b4cb0219597", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:11:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "75" + }, + "ResponseBody": { + "jobId": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:11:53Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8bf260ed0f5bc3a790071bdc2bbc6593", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7b56a09e-2aee-49e6-90d4-1e083115d30d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:11:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "62" + }, + "ResponseBody": { + "jobId": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:11:53Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c915e01429452daac3872bd2cbf00de7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "195e3266-5d06-4da3-989c-229f3285d2c2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:11:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "59" + }, + "ResponseBody": { + "jobId": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:11:53Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6cd228b78a9fcce8c7bc50a16a237d75", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "51c2029d-8199-4e15-bd4f-55e29f491cd8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:11:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "58" + }, + "ResponseBody": { + "jobId": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:11:53Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3b7e734294ac309b6c5c7d3e4d5f89f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a4ac30ea-264b-493b-98a0-5ec917d0e4fe", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:11:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "54" + }, + "ResponseBody": { + "jobId": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:11:57Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "032534faf8e98af3f8480289d809c2a0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b7358282-524d-44b2-b7a2-8ade654503e6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:11:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "70" + }, + "ResponseBody": { + "jobId": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:11:57Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e39eb50a59398d9c1f0fb6d9c215e8f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fedb7b18-0a19-48bb-9014-907552688165", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "64" + }, + "ResponseBody": { + "jobId": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:11:57Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35a7b1c379fd3c8cf32dbb022780eaad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bc547258-2b33-4b89-8b42-d76e57b751fe", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:01 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": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:11:57Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2ec827031437a0669897e4da411ac7e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "282312dd-62b4-4fd8-98e7-1fde58524e29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "54" + }, + "ResponseBody": { + "jobId": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:11:57Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "27c50f5f8c6191a22961ef0c9e99659f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3ed0f24b-9210-4655-86b3-8b5d5b87a41a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "110" + }, + "ResponseBody": { + "jobId": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:12:03Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 3, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:03.1179662Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9ad60924b94dafba4a069d6595b2fad9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b82a264a-a927-41a7-ae48-24665f25371d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "112" + }, + "ResponseBody": { + "jobId": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:12:03Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 3, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:03.1179662Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "18a2d865c3ba764b853605d5245a01fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7bfcd464-fe24-4291-aa0e-b7b719dd1808", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "127" + }, + "ResponseBody": { + "jobId": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:12:03Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 3, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:03.1179662Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "38b544322c43a6955415dc5bef3cfb76", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "47f14633-6272-4f2f-9531-dae2ba3f4876", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "112" + }, + "ResponseBody": { + "jobId": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:12:03Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 3, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:03.1179662Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c6a616674df761e4bd601516b3e58af0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f00c948a-7049-48c9-83c1-df05768ab5e2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:07 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "163" + }, + "ResponseBody": { + "jobId": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:12:03Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 3, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:03.1179662Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "50339e05c2fc389643fcc3a4e6f08649", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3ad4a8f3-eb9e-4654-a927-0fcbd2ac3bff", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "108" + }, + "ResponseBody": { + "jobId": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:12:03Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 3, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:03.1179662Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e6e8e3b3bb3e40760547ae3177ef26f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "20548be8-12f4-4267-86c8-9c129a586bef", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "112" + }, + "ResponseBody": { + "jobId": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:12:03Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 3, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:03.1179662Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5155eb8baa08a47a806d83fa8a3f7acd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "445d9974-3bd5-4016-8d0d-26953993474f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "110" + }, + "ResponseBody": { + "jobId": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:12:03Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 3, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:03.1179662Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "24dacbd97b76ca3d964ef0a747b221c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ba5e59c8-0520-4721-94e5-46113d8bc4f0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "124" + }, + "ResponseBody": { + "jobId": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:12:03Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 3, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:03.1179662Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fb19530a359a904014c98e45b70d5a21", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3394212c-cad6-4ebf-bed6-de24c06d728d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "116" + }, + "ResponseBody": { + "jobId": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:12:03Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 3, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:03.1179662Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4b09acdacda30ff9ae8bbab9bad25ccd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "99a1f2fa-4248-4a30-8d22-f4664b427fa5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "111" + }, + "ResponseBody": { + "jobId": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:12:03Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 3, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:03.1179662Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "37f0bf4c7e26a4338b4a10acedf71289", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "59fd3ec8-7dfe-4388-b697-851236090895", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "164" + }, + "ResponseBody": { + "jobId": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:12:16Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:03.1179662Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:16.1128125Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9bcdcff4d5a93c205a094d0e7b86d641", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f266c8f9-34f8-4529-8280-6e95358c85a5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:17 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": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:12:16Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:03.1179662Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:16.1128125Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f8f9c16d231d5bfb7965c059bd4c22b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f4c540ba-a7f0-4360-b7e5-d0ccd083523c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "159" + }, + "ResponseBody": { + "jobId": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:12:16Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:03.1179662Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:16.1128125Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ebc53078c10577249fb3dc1c31242804", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b63713f2-6fc6-42f5-bcc0-2361c030e6d9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "164" + }, + "ResponseBody": { + "jobId": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:12:16Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:03.1179662Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:16.1128125Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2c3fcf741afed16cd471214314c67f0d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c55f457f-2d36-4331-8a11-05165ba05656", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "171" + }, + "ResponseBody": { + "jobId": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:12:16Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:03.1179662Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:16.1128125Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4a9696e6eac1ab3b9c81586946de2955", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e5636cd5-d055-4358-9a1e-1395c5de9ef3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:22 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": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:12:16Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:03.1179662Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:16.1128125Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ede5bc3cf60d5eb7c4f31793a0e063d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1392a8e6-fbb0-4f6c-9d88-16251620422f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "163" + }, + "ResponseBody": { + "jobId": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:12:16Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:03.1179662Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:16.1128125Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9a35cf33de8d894293938f7cc1028bf5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3d8b0fea-4259-4f44-bfcd-1129267d6175", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "144" + }, + "ResponseBody": { + "jobId": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:12:16Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:03.1179662Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:16.1128125Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5706cb4891e1ef00de3886ced3a70bbb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "48634b91-a343-4fe3-9a21-9953677f2254", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "164" + }, + "ResponseBody": { + "jobId": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:12:16Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:03.1179662Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:16.1128125Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7736801e8ea85ec77a5b5a79673b9cc2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0253b86e-3031-409b-8344-45198a7c32e4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "206" + }, + "ResponseBody": { + "jobId": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:12:27Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:03.1179662Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:16.1128125Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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-06-29T19:12:27.3088649Z", + "taskName": "MyExtractKPAction", + "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.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d44b21680bdaa1f7ce46bc555874b6eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "06b960a2-ade4-4b84-b75b-7492b034b93a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "199" + }, + "ResponseBody": { + "jobId": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:12:27Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:03.1179662Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:16.1128125Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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-06-29T19:12:27.3088649Z", + "taskName": "MyExtractKPAction", + "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.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "415ed38814ccb94d03a8dd85378688a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e5fb98a5-4814-4afb-9adb-d6cfa6e3ce8b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "221" + }, + "ResponseBody": { + "jobId": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:12:27Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:03.1179662Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:16.1128125Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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-06-29T19:12:27.3088649Z", + "taskName": "MyExtractKPAction", + "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.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b265c39c365c13e18894a862d2720605", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "46388b8c-5fda-4f95-ae3f-55288ac3e2bd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "205" + }, + "ResponseBody": { + "jobId": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:12:27Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:03.1179662Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:16.1128125Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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-06-29T19:12:27.3088649Z", + "taskName": "MyExtractKPAction", + "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.1/analyze/jobs/0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "93f16ea55add54f6d492d0322d716a48", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ccf65f41-2ba9-49fd-b9c6-5d56a9bbca07", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:12:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "370" + }, + "ResponseBody": { + "jobId": "0e968dc8-598c-4f34-a4ce-9ac2a619ed61", + "lastUpdateDateTime": "2021-06-29T19:12:32Z", + "createdDateTime": "2021-06-29T19:11:51Z", + "expirationDateTime": "2021-06-30T19:11:51Z", + "status": "succeeded", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 5, + "failed": 0, + "inProgress": 0, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:03.1179662Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:11:53.2231656Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:16.1128125Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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-06-29T19:12:27.3088649Z", + "taskName": "MyExtractKPAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "Elon Musk", + "CEO", + "SpaceX", + "Tesla" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "Tesla stock" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:12:32.4424185Z", + "taskName": "MyAnalyzeSentimentAction", + "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" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "264210052", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.cognitiveservices.azure.com/" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithActionName(True)Async.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithActionName(True)Async.json new file mode 100644 index 000000000000..9138fef339ce --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithActionName(True)Async.json @@ -0,0 +1,14805 @@ +{ + "Entries": [ + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "797", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-46821dd1e265cd4f891960a108b2bbb7-bc938ce33834274e-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "55138d1b68fa36f2e2692a9c905cb5f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "Elon Musk is the CEO of SpaceX and Tesla.", + "language": "en" + }, + { + "id": "1", + "text": "Tesla stock is up by 400% this year.", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "MyRecognizeEntitiesAction" + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "MyRecognizePiiEntitiesAction" + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": {}, + "taskName": "MyExtractKPAction" + } + ], + "entityLinkingTasks": [ + { + "parameters": { + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "MyRecognizeLinkedEntitiesAction" + } + ], + "sentimentAnalysisTasks": [ + { + "parameters": { + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "MyAnalyzeSentimentAction" + } + ] + }, + "displayName": "AnalyzeOperationWithMultipleTasks" + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "9fa2e52b-4560-4043-83b4-2515b99c0b8e", + "Date": "Tue, 29 Jun 2021 19:07:17 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "415" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c5df6f03930509534ac90cf7db3e5136", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "25cda295-7608-4370-8ae9-5c3940fa6be0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07: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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:18Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "notStarted", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 5, + "total": 5 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7cd8a89d5d2919ef9f5cb7619849140d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5ee9996f-8f4f-4fac-bcfe-4035c77d8450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07: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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:19Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b6ea09a0ffb7871f390a0a305cfb5ba4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8d17446f-a38e-4e62-91b0-19c0d695903a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07:20 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:20Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e8fef3183983a6cb80c525a8dbf27001", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0e799ba4-a726-4aab-891e-6651173b7a02", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07:21 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:21Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d156ffb59a539e7f8851431f52bebda4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9f345093-128c-4076-8eda-d89ec191d864", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07:23 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:21Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a54912012b4b67893d4336f1d976ab46", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "33222b65-d181-4902-aee7-4d289b6f3bb8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07:24 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:21Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5d7b099989a57d5073606032f5ac54c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ba9c2d08-2ccf-4f32-90c2-19ccf31af790", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "68" + }, + "ResponseBody": { + "jobId": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:21Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c9a78107cba889b575ee940f648ec411", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "10c9f37d-ffa6-4645-9465-cee2001e14a0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07:26 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:21Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 4, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4985fca5604377ffc1cb31eaca567190", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "56fc2f19-ed1a-4c34-9e34-c7fe01584ab5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "2882" + }, + "ResponseBody": { + "jobId": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "58e974efe2cfcd9d53f1e7b6f54119e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "894c4c87-ac0a-4f38-b85e-15b0fd33601f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07:31 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f98d4e9c0a26a67d813007dd9acbbf1f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "49ea79c5-8325-4865-8419-66fd98643edc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "188" + }, + "ResponseBody": { + "jobId": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f01f047c6ba4c2425eb8f55279498280", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "faba0fe2-d99a-48f2-9585-d70523be9bdf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07:33 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7c4e4cb278c8e469f643d79edbc03388", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "433dabd1-17d4-4e6c-a696-e1d909d5b0d0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07:34 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f139c732292130410cca9a6e152b2d38", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "56557b91-3e2b-4f43-aa8c-11688c868b71", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "233" + }, + "ResponseBody": { + "jobId": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4e2b86ae427c04569a3bf96194a3e79e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a6722f8d-12ac-4151-8f74-ace5d38091a9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "161" + }, + "ResponseBody": { + "jobId": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b1206d85900f885f0b1d6ffeddfbcfcb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0d2855d6-8415-40d1-a666-8deecca421aa", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "255" + }, + "ResponseBody": { + "jobId": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "55f09e15e495ef0b713556e52fdf9c68", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b479ab35-ce5d-4f06-b1db-95d8e30d8eda", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07:39 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a7e9fce37b0a1d2926a2435fd258279e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4c907484-d56a-488a-bb2a-b86f923bd1a8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07:41 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f54b2e6b91b3a009613140da3a79592b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6203d609-8e73-40fd-8860-2faf3eb2b8d5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07:42 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e01a0780271299c075d22ff2a1ac1c18", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0ccb27db-6cf0-4edb-a108-3e3042e6d1df", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07:43 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "017ab80ea79452b5f34846d93b4ee3ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7121d23b-1acc-492a-86e9-7eecb9a85e2c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07:44 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cbde1849463e438c6db17fe06216feb5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a329c12c-0715-409d-8e3b-89507e6235cf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07:46 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "81cc271557ffd99652c8edc9e1e75e26", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9b2c33eb-40e6-445d-b9dd-20c06616046b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "152" + }, + "ResponseBody": { + "jobId": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "89a982ef50cec7da2b3694e227d4efdc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f338213c-1162-4365-94d6-8fa555a09299", + "Connection": "close", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07:48 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "14c4904a6182f1ac8104797658c36286", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cb6ea3a7-89ad-4b68-b3da-c410fb373e55", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07:50 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "dff05953756dc4e74c0456c8c3b4b27d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bb8356d9-5aba-4bfa-b9af-ab6b3988b078", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "198" + }, + "ResponseBody": { + "jobId": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "517f10d849228ea3d5b708c9d7646f68", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "85fa6a8c-66c9-4157-9ae9-cfde28cc801d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07:52 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ce8e0dd40fe3d56fa800c77e0be32ecc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1cfe04e7-66de-468d-8f9f-6bc15ad48ec1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07:53 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "479dfb5211440963b56209b56c1eece7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8008b3af-0500-4e96-bc15-4a761c0745d3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07:55 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b5f4ed94e425c899a1a9a822812582f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4a4a05f8-1218-4fee-803c-d00190d080bf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07:56 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "db773c8927c7c224aa85188105b9688a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "95ff01e5-c00d-4a97-8bf3-b691a0c765cf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07:57 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1de9e01378ee6da762d4a69a69408790", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6b0c75a0-c324-4a6f-94e7-991dfbdffd5a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07:58 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "302c17e011a66d20c9320ba0cb18c3e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5673c419-452c-4cf0-a5dc-d488709ab1ad", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:00 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a10f1d41653b1002940979f2818a5969", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0f139e0f-f85a-4f68-ab9a-561a904422c4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "252" + }, + "ResponseBody": { + "jobId": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "eda188fd378d02e4bf7c54bc6c06a24a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "77ac458c-e519-4e07-b2ed-bff120f5f0bb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:02 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4b58be11e6317a54141b9b9d972eeb3f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "892cceaf-2670-424e-b761-ebb549ae530e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "156" + }, + "ResponseBody": { + "jobId": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "43a3a2d8d577095a390de2bf1046a38e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a75d3e54-8a5e-4fde-9692-80def9f9b82f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "150" + }, + "ResponseBody": { + "jobId": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c2e02e670d3116373426d8719c466a90", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1d32431f-c472-424f-82e5-69e83781a142", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:06 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cae315905f633cd3644f122403956ace", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2ed2f167-4347-4245-83bc-be48f04775bf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:07 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "161" + }, + "ResponseBody": { + "jobId": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "69360d78294dcb0d6a8c0e50fce96df2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2f2ea119-da74-4a96-9f87-9eea16bf4bcf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:08 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fb2e51a2d962082a5ba45ee2fb13139f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dba8fd25-8fed-4756-afbf-8e3d99c56972", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "198" + }, + "ResponseBody": { + "jobId": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8ff90abb0110674307185fd750823f7a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8f751eb0-f053-4c40-86d1-c245fb9d2d66", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "149" + }, + "ResponseBody": { + "jobId": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b1811fe26e669e6ce22e0da8cb2bd056", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "61b01e53-71cb-4a53-9537-3a51735513a6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:12 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f2946f78def0a1e20ec7f34a7a52b7d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fdd8f74e-fcca-400d-bd70-55a09415887f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "351" + }, + "ResponseBody": { + "jobId": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "db00e36561924d389e5aace2f39a9cdc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8a71488a-4d7a-4393-92f5-1709f8b72ad5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:15 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e05e08484ded048a3ddfa29f7a21248f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "41185dba-f676-4337-b51a-026c62d6af36", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08: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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e7433476f42b17c4374753953100ae74", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8c7b3927-de5f-45fb-b034-b2e4d7454031", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:17 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7101172bd7f417eb59fb9eb2be98d27c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dc17383a-a823-435c-af20-c5cac065be99", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:18 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "be6b1c36b45754b04347a9a6f9f4d23c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1eee852b-2b81-4aee-95d4-26076ecc946f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:20 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "62742e31b21f9f9b492b8d2f5512589f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dabd28a5-c2f8-45ac-ace7-a57e6a6a9c01", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "163" + }, + "ResponseBody": { + "jobId": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "155fd774ef94761d66ad2dac2e451e65", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b8230686-70ef-4d8b-a38a-1e7e83c09e5e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:23 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8f8061296f23845c80cc742b2681fe31", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b3bac170-2957-47c0-af9c-cf9e2876cd40", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:24 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "21310aeebd9541a811fefb7284ef7104", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "64e032cc-46f6-4dde-a046-9891776725a6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:25 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:07:27Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f406280dc992057b7bdb94c87af14fe5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7cee0aad-f351-481b-9b76-09b6bb0be98f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:26 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:08:25Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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-06-29T19:08:25.9065203Z", + "taskName": "MyExtractKPAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "24bdfcaffc136cd0b93e7e2573eaff91", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c4e003b9-2ba2-4920-aa0f-be84b2c74f4d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:27 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:08:25Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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-06-29T19:08:25.9065203Z", + "taskName": "MyExtractKPAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fe1e705b097a259f8e2ca6b928e0c720", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "aae44842-d51c-485a-94f5-81796241e8a0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "231" + }, + "ResponseBody": { + "jobId": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:08:25Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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-06-29T19:08:25.9065203Z", + "taskName": "MyExtractKPAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "88c216ae4d3110f0579a3b534a559190", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a085d0ff-f7ee-4259-921c-867899992383", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:30 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": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:08:25Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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-06-29T19:08:25.9065203Z", + "taskName": "MyExtractKPAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0a6d03db51d2a56a5d9895e7551643d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "06a01380-dfe1-4487-94ec-4b8377a26f82", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "309" + }, + "ResponseBody": { + "jobId": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:08:25Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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-06-29T19:08:25.9065203Z", + "taskName": "MyExtractKPAction", + "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.1/analyze/jobs/47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5d775d7776270d5f7f0ea6e0ce4bda39", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a238bfc2-9d44-434b-8357-a8ddbd43380f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:08:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "265" + }, + "ResponseBody": { + "jobId": "47773283-bbc0-4b17-8e4b-047c75c4d4b8", + "lastUpdateDateTime": "2021-06-29T19:08:32Z", + "createdDateTime": "2021-06-29T19:07:18Z", + "expirationDateTime": "2021-06-30T19:07:18Z", + "status": "succeeded", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 5, + "failed": 0, + "inProgress": 0, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.2154596Z", + "taskName": "MyRecognizeEntitiesAction", + "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-06-29T19:07:20.1313046Z", + "taskName": "MyRecognizeLinkedEntitiesAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "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": [ + { + "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": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:07:27.1625573Z", + "taskName": "MyRecognizePiiEntitiesAction", + "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-06-29T19:08:25.9065203Z", + "taskName": "MyExtractKPAction", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "Elon Musk", + "CEO", + "SpaceX", + "Tesla" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "Tesla stock" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:08:32.2454075Z", + "taskName": "MyAnalyzeSentimentAction", + "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" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1817111370", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.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 47f9fd205434..85169c069388 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.1-preview.5/analyze", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "276", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2454e28f7a9f0b40b7b5ec0a79ac3c29-df92d320d38bb945-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f7fa29f44f74db4abb454f7b30520fd8-a3bd837b4fd6d14f-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "c99cb42a5a82e854b9e5b6d84f7b86ab", "x-ms-return-client-request-id": "true" }, @@ -39,13 +45,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "21ad8ae4-37ed-443b-bcc4-cb75e24c7273", + "apim-request-id": "0f54af41-618b-4bf7-9171-b969da9ec1f7", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 14:18:55 GMT", + "Date": "Tue, 29 Jun 2021 19: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" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "error": { @@ -53,7 +59,7 @@ "message": "Invalid parameter in request", "innererror": { "code": "InvalidParameterValue", - "message": "Job task parameter value InvalidVersion is not supported for model-version parameter for job task type KeyPhraseExtraction. Supported values latest,2019-10-01,2020-07-01." + "message": "Job task parameter value InvalidVersion is not supported for model-version parameter for job task type KeyPhraseExtraction. Supported values latest,2019-10-01,2020-07-01,2021-05-01." } } } 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 8e06f38cfc51..68a97cdc0d75 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithErrorTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "276", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-932f4d95d9fca6469de2b3a58a8b1571-798e2eebe009ef48-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-18cb856d8c0c0242870f45159a042e2a-8c50ff57e250704b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ac619f24e6117d0afaa59ef96ef473c7", "x-ms-return-client-request-id": "true" }, @@ -39,13 +39,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "adfc2018-12a8-4c11-9f1c-36e50ba6938f", + "apim-request-id": "aa664927-7a2a-46b9-a340-12a42ecab087", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 14:18:56 GMT", + "Date": "Tue, 29 Jun 2021 19:02: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-envoy-upstream-service-time": "4" }, "ResponseBody": { "error": { @@ -53,7 +53,7 @@ "message": "Invalid parameter in request", "innererror": { "code": "InvalidParameterValue", - "message": "Job task parameter value InvalidVersion is not supported for model-version parameter for job task type KeyPhraseExtraction. Supported values latest,2019-10-01,2020-07-01." + "message": "Job task parameter value InvalidVersion is not supported for model-version parameter for job task type KeyPhraseExtraction. Supported values latest,2019-10-01,2020-07-01,2021-05-01." } } } 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 8dd3423c765f..b0367c79dc24 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.1-preview.5/analyze", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "212", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-508b5e4a5098ce4bb0dab896b0af1b50-b0c0f32e00c26143-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-575f7fcbffd40947b1f9d432d7fe672f-94851eb030fb3f4e-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "5576fa283fd263773849a876efb14577", "x-ms-return-client-request-id": "true" }, @@ -38,50 +44,52 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "4ca2513d-93d1-49ea-9e8c-b48eddeadd81", - "Date": "Thu, 27 May 2021 18:04:52 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/e51dfb7e-61cc-46f9-b8b0-989acdf382ea", + "apim-request-id": "7c97fa4c-7665-486b-a025-d6346fdd389b", + "Date": "Tue, 29 Jun 2021 19:15:38 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", "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": "185" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/e51dfb7e-61cc-46f9-b8b0-989acdf382ea", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "94e2b682-a448-4a2f-b1bd-f2bb8831ce68", + "apim-request-id": "3b6bc659-3890-4f6c-9aeb-bb68e3d4c901", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:04:52 GMT", + "Date": "Tue, 29 Jun 2021 19:15:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { - "jobId": "e51dfb7e-61cc-46f9-b8b0-989acdf382ea", - "lastUpdateDateTime": "2021-05-27T18:04:52Z", - "createdDateTime": "2021-05-27T18:04:52Z", - "expirationDateTime": "2021-05-28T18:04:52Z", + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:38Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", "status": "notStarted", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:04:52Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -90,39 +98,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/e51dfb7e-61cc-46f9-b8b0-989acdf382ea", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "c28de171-0f48-4717-8aea-1533d7d1a986", + "apim-request-id": "468dac7b-a2c9-458d-8e32-c743059ee03d", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:04:53 GMT", + "Date": "Tue, 29 Jun 2021 19: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-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "e51dfb7e-61cc-46f9-b8b0-989acdf382ea", - "lastUpdateDateTime": "2021-05-27T18:04:53Z", - "createdDateTime": "2021-05-27T18:04:52Z", - "expirationDateTime": "2021-05-28T18:04:52Z", - "status": "running", + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:38Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "notStarted", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:04:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -131,39 +141,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/e51dfb7e-61cc-46f9-b8b0-989acdf382ea", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "5e498caa-5839-4511-9f41-58c9b04c3540", + "apim-request-id": "232a64c8-b2a7-41b4-b2e5-6e9e7194486c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:04:54 GMT", + "Date": "Tue, 29 Jun 2021 19:15: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": "7" }, "ResponseBody": { - "jobId": "e51dfb7e-61cc-46f9-b8b0-989acdf382ea", - "lastUpdateDateTime": "2021-05-27T18:04:53Z", - "createdDateTime": "2021-05-27T18:04:52Z", - "expirationDateTime": "2021-05-28T18:04:52Z", - "status": "running", + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:38Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "notStarted", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:04:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -172,39 +184,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/e51dfb7e-61cc-46f9-b8b0-989acdf382ea", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "ad024db6-342d-42c0-a3c8-e74b3cd900a8", + "apim-request-id": "4f0f7398-e277-4f8d-a7cc-196ff40282eb", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:04:55 GMT", + "Date": "Tue, 29 Jun 2021 19:15: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": "e51dfb7e-61cc-46f9-b8b0-989acdf382ea", - "lastUpdateDateTime": "2021-05-27T18:04:53Z", - "createdDateTime": "2021-05-27T18:04:52Z", - "expirationDateTime": "2021-05-28T18:04:52Z", - "status": "running", + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:38Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "notStarted", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:04:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -213,39 +227,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/e51dfb7e-61cc-46f9-b8b0-989acdf382ea", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "65f7d65b-39b0-43a4-a0d2-3ddcf6f9a8d8", + "apim-request-id": "9c75958b-27ab-456c-89e1-118c7a61dff9", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:04:56 GMT", + "Date": "Tue, 29 Jun 2021 19:15:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "e51dfb7e-61cc-46f9-b8b0-989acdf382ea", - "lastUpdateDateTime": "2021-05-27T18:04:53Z", - "createdDateTime": "2021-05-27T18:04:52Z", - "expirationDateTime": "2021-05-28T18:04:52Z", + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:04:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -254,39 +270,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/e51dfb7e-61cc-46f9-b8b0-989acdf382ea", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "23ce31b6-e099-4087-b988-ba3edcf24506", + "apim-request-id": "baefdb13-91c0-4773-84c2-d81cd685bc0d", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:04:57 GMT", + "Date": "Tue, 29 Jun 2021 19:15:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "e51dfb7e-61cc-46f9-b8b0-989acdf382ea", - "lastUpdateDateTime": "2021-05-27T18:04:53Z", - "createdDateTime": "2021-05-27T18:04:52Z", - "expirationDateTime": "2021-05-28T18:04:52Z", + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:04:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -295,39 +313,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/e51dfb7e-61cc-46f9-b8b0-989acdf382ea", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "4a13bcf7-29c9-48cd-a9dc-99157290a6c8", + "apim-request-id": "31230767-60f3-41f9-afbb-9227a5494fd9", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:04:58 GMT", + "Date": "Tue, 29 Jun 2021 19:15:44 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": "6" }, "ResponseBody": { - "jobId": "e51dfb7e-61cc-46f9-b8b0-989acdf382ea", - "lastUpdateDateTime": "2021-05-27T18:04:53Z", - "createdDateTime": "2021-05-27T18:04:52Z", - "expirationDateTime": "2021-05-28T18:04:52Z", + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:04:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -336,47 +356,2414 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/e51dfb7e-61cc-46f9-b8b0-989acdf382ea", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "82a85620-ca03-4179-9927-1a11d86fd128", + "apim-request-id": "c58e3a04-48a8-4d3e-955c-17310e7953d9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9692b558deb4cad42f698c24f7efb09a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2fdad314-fa4e-478a-b4de-54e6fb23ded8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "49b5d53f-6066-4f5f-bf26-6aaccc8d751c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15: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": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "8f9549c4-c251-48cf-9243-2987c2796039", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "23ac437a-de02-4ee7-bf4a-1c617fcddad9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "b7ea2eaf-15af-4a21-a90b-3530482cdb7b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15: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": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "47f8609e-0bae-48fc-bb8b-6d5fc9b1eeab", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "49" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "b32533b3-2951-480f-b506-a3c2352b26be", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "b492d977-e8cc-4882-89a6-168db46f5558", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "d2fe645f-822f-4d31-8511-1bfec10d8610", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15: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": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "e9666970-1236-480d-8706-25272d52505f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "56363a19-35ed-47fa-8e26-119684642911", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "53ae8b90-f3b8-4dc6-9aaf-3e50d23a8c8a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "3f73163b-c368-41e4-8716-a29da9a75eb8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:15:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "6f76b1a3-26e9-4e3c-aef3-96cbdae2cbb6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16: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": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "c5a69da0-73d3-45a5-bf2a-898d5b3dba1c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "80877152-680e-41e0-98ec-9b24487e2743", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "fad6e073-34af-453f-9297-d314a1665905", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "6b4942ac-7cbe-4bf5-8da4-b7c14318b23a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "f55eb6a9-7bd7-43d2-a71e-6d0ab3749acc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "5cc79351-5dc4-4ab7-b74d-f2cffa8ab92c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:06 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": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "173b2ce9-420c-4959-80d5-2f74faf0fd1e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16: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": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "076339f6-fda4-4ca5-a070-7320048fe5d2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "078307d2-8f26-4c04-94a2-99255c019b39", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "19b4e743-8db9-4686-81f5-3e326d4fe6bf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "0d00ecc8-0072-4e21-a62c-f96764ac6dc2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16: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": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "320059ae-9218-48ce-b616-ea8c9009b972", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "88dbcf38-9d06-411d-8b91-9210135c3dee", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "8464dcfa-9ee0-48a3-8b0a-cba1b049f50f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "82a6c1a8-3972-4a43-9c0e-a9aeb92efaa7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:16 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": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "96092d3d-a54d-4c46-a0a9-2308d1d618e1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "a96b13c2-3d0e-4fbd-a60c-23792a771a30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "c2461cac-9c48-4d89-88d5-c3f8926095d7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "cd616768-db2e-43df-9ee0-28a1d3746112", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "bc253791-1493-4a2f-abed-ccf7dbc00f53", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "82c0c54e-a04c-409f-8f5a-a6822b22c619", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16: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": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "6b99704a-1df4-4a28-a56b-8e56ad3a403c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "a547dff1-3203-4754-a56d-7d9875aa8ed4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "95616177-7381-4cdc-81f8-caff02bda86a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "2db7c222-c95c-42d9-a11d-37fe2f8880f0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "5adcd7a6-05a2-454c-baed-bf92ac93075d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16: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": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "06a42066-3051-4aa2-a0eb-dad25783b616", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "24114236-9818-4a92-bac0-ff6474e855d1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "12c20053-9e3e-4cf7-a17b-c4635ccf25f9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "c77abc42-9029-4d69-b69e-1ab26c99f4ca", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "80debd2f-2c8b-4855-ab53-66d90bc0f793", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19: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" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "7ea5500d-ede4-46bf-b7c7-997b07fe4f27", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "c8d2dfd8-208d-4bf7-ae00-87f37daa5027", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "69ff9d5d-9442-408d-9979-0fe648ee72b9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "626ba37c-07da-4334-823a-7c1b023dfe50", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "0aad1c32-e1ad-49bf-9f4f-da6da35ee835", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "23ace755-4c58-4167-b1e4-97e14be12a21", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "6571bdda-5747-459d-9999-8a5a908ec2ca", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "25afdeb8-cb35-4f73-927a-e0b4e84d7839", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "26403f3e-ef50-452e-8aa9-ca0e30b5ebab", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:16:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:15:42Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/68e66396-3e31-497c-9e04-1864c72252a0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0ba8c2c47f062dd7bf56eed4de993854", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a5941316-08f0-45b1-9069-ffc1dcc4f554", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:04:59 GMT", + "Date": "Tue, 29 Jun 2021 19:16:43 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": "72" }, "ResponseBody": { - "jobId": "e51dfb7e-61cc-46f9-b8b0-989acdf382ea", - "lastUpdateDateTime": "2021-05-27T18:05:00Z", - "createdDateTime": "2021-05-27T18:04:52Z", - "expirationDateTime": "2021-05-28T18:04:52Z", + "jobId": "68e66396-3e31-497c-9e04-1864c72252a0", + "lastUpdateDateTime": "2021-06-29T19:16:43Z", + "createdDateTime": "2021-06-29T19:15:38Z", + "expirationDateTime": "2021-06-30T19:15:38Z", "status": "succeeded", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:05:00Z" - }, "completed": 1, "failed": 0, "inProgress": 0, "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:05:00.0640257Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:16:43.3384263Z", + "taskName": "KeyPhraseExtraction_latest", "state": "succeeded", "results": { "documents": [ @@ -384,6 +2771,7 @@ "id": "0", "keyPhrases": [ "Subject", + "100mg", "ibuprofen" ], "warnings": [] @@ -402,7 +2790,7 @@ } } ], - "modelVersion": "2020-07-01" + "modelVersion": "2021-06-01" } } ] 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 8e0f1fe2b74c..b9b3556354ca 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithErrorsInDocumentTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithErrorsInDocumentTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "212", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-66753dd127607744adf5f9ade5003362-447fed2d611a8847-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d3f4b499c3e27e4681b1d14755d690ce-85decee27cbb0548-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f91fef4332cac890575fea1876896219", "x-ms-return-client-request-id": "true" }, @@ -38,50 +38,46 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "b5e93faf-cf05-4e2a-981f-feded35a1619", - "Date": "Thu, 27 May 2021 18:08:02 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/f8e42018-1dff-4a10-96dd-cf36d139a78e", + "apim-request-id": "4e0f19f2-5f0e-4827-9f93-38e19db6ae5f", + "Date": "Tue, 29 Jun 2021 19:02:30 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/d69c2278-619f-49e7-bed7-f43a55af4d92", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2717" + "x-envoy-upstream-service-time": "172" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/f8e42018-1dff-4a10-96dd-cf36d139a78e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/d69c2278-619f-49e7-bed7-f43a55af4d92", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b963f4a2286260197a4218e5186ef72e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ac23b6f2-1c42-4a26-a189-83881e940a43", + "apim-request-id": "ef7bada7-1543-4cb3-8587-d13b964975b8", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:08:02 GMT", + "Date": "Tue, 29 Jun 2021 19:02:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "f8e42018-1dff-4a10-96dd-cf36d139a78e", - "lastUpdateDateTime": "2021-05-27T18:08:02Z", - "createdDateTime": "2021-05-27T18:07:59Z", - "expirationDateTime": "2021-05-28T18:07:59Z", + "jobId": "d69c2278-619f-49e7-bed7-f43a55af4d92", + "lastUpdateDateTime": "2021-06-29T19:02:31Z", + "createdDateTime": "2021-06-29T19:02:31Z", + "expirationDateTime": "2021-06-30T19:02:31Z", "status": "notStarted", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:08:02Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -90,39 +86,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/f8e42018-1dff-4a10-96dd-cf36d139a78e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/d69c2278-619f-49e7-bed7-f43a55af4d92", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "46b6de92afb75c6e3d74cefdc9f3e8ea", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dd4ccf1c-ae10-487b-9b9b-f4ea0e988a82", + "apim-request-id": "2acf3ac2-26dc-481b-879f-b5ea60adc555", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:08:03 GMT", + "Date": "Tue, 29 Jun 2021 19:02:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "f8e42018-1dff-4a10-96dd-cf36d139a78e", - "lastUpdateDateTime": "2021-05-27T18:08:02Z", - "createdDateTime": "2021-05-27T18:07:59Z", - "expirationDateTime": "2021-05-28T18:07:59Z", - "status": "notStarted", + "jobId": "d69c2278-619f-49e7-bed7-f43a55af4d92", + "lastUpdateDateTime": "2021-06-29T19:02:32Z", + "createdDateTime": "2021-06-29T19:02:31Z", + "expirationDateTime": "2021-06-30T19:02:31Z", + "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:08:02Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -131,40 +123,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/f8e42018-1dff-4a10-96dd-cf36d139a78e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/d69c2278-619f-49e7-bed7-f43a55af4d92", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "caf5e0e0a8461a36d6be7e881aabb0e9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9ecad33c-d80b-4771-89e6-3b12fc671304", - "Connection": "close", + "apim-request-id": "23024244-7030-45fb-b313-2677ce218d81", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:08:04 GMT", + "Date": "Tue, 29 Jun 2021 19:02:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "74" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "f8e42018-1dff-4a10-96dd-cf36d139a78e", - "lastUpdateDateTime": "2021-05-27T18:08:04Z", - "createdDateTime": "2021-05-27T18:07:59Z", - "expirationDateTime": "2021-05-28T18:07:59Z", + "jobId": "d69c2278-619f-49e7-bed7-f43a55af4d92", + "lastUpdateDateTime": "2021-06-29T19:02:32Z", + "createdDateTime": "2021-06-29T19:02:31Z", + "expirationDateTime": "2021-06-30T19:02:31Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:08:04Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -173,39 +160,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/f8e42018-1dff-4a10-96dd-cf36d139a78e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/d69c2278-619f-49e7-bed7-f43a55af4d92", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9785bb671cd3f26185067bed5a1c9687", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eb88d392-2120-4041-b96c-595231118ba4", + "apim-request-id": "af961be8-708c-4de7-9719-6b22c5d96bb4", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:08:06 GMT", + "Date": "Tue, 29 Jun 2021 19:02:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "f8e42018-1dff-4a10-96dd-cf36d139a78e", - "lastUpdateDateTime": "2021-05-27T18:08:04Z", - "createdDateTime": "2021-05-27T18:07:59Z", - "expirationDateTime": "2021-05-28T18:07:59Z", + "jobId": "d69c2278-619f-49e7-bed7-f43a55af4d92", + "lastUpdateDateTime": "2021-06-29T19:02:32Z", + "createdDateTime": "2021-06-29T19:02:31Z", + "expirationDateTime": "2021-06-30T19:02:31Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:08:04Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -214,39 +197,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/f8e42018-1dff-4a10-96dd-cf36d139a78e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/d69c2278-619f-49e7-bed7-f43a55af4d92", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "37042e592c78e9e7a79b70f931e64292", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "70789471-15d2-4f30-b41e-8072e2603a95", + "apim-request-id": "9f8d219c-56c6-4c45-9f21-c41e81a04b55", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:08:07 GMT", + "Date": "Tue, 29 Jun 2021 19:02:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "f8e42018-1dff-4a10-96dd-cf36d139a78e", - "lastUpdateDateTime": "2021-05-27T18:08:04Z", - "createdDateTime": "2021-05-27T18:07:59Z", - "expirationDateTime": "2021-05-28T18:07:59Z", + "jobId": "d69c2278-619f-49e7-bed7-f43a55af4d92", + "lastUpdateDateTime": "2021-06-29T19:02:32Z", + "createdDateTime": "2021-06-29T19:02:31Z", + "expirationDateTime": "2021-06-30T19:02:31Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:08:04Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -255,39 +234,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/f8e42018-1dff-4a10-96dd-cf36d139a78e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/d69c2278-619f-49e7-bed7-f43a55af4d92", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0e96e5c4506dc4177f0345402c49c0ba", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "511e7de1-be85-400a-92dc-fb3496314702", + "apim-request-id": "f9d97b54-668f-4dc9-8a40-d67b48462b21", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:08:08 GMT", + "Date": "Tue, 29 Jun 2021 19:02: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": "6" }, "ResponseBody": { - "jobId": "f8e42018-1dff-4a10-96dd-cf36d139a78e", - "lastUpdateDateTime": "2021-05-27T18:08:04Z", - "createdDateTime": "2021-05-27T18:07:59Z", - "expirationDateTime": "2021-05-28T18:07:59Z", + "jobId": "d69c2278-619f-49e7-bed7-f43a55af4d92", + "lastUpdateDateTime": "2021-06-29T19:02:32Z", + "createdDateTime": "2021-06-29T19:02:31Z", + "expirationDateTime": "2021-06-30T19:02:31Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:08:04Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -296,39 +271,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/f8e42018-1dff-4a10-96dd-cf36d139a78e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/d69c2278-619f-49e7-bed7-f43a55af4d92", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "eb2ef72778a63a70d39bef37ac68c19f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7fda6448-82a6-487e-b5fd-95ba6858799b", + "apim-request-id": "862b46ef-1f54-4304-8967-333b56908351", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:08:09 GMT", + "Date": "Tue, 29 Jun 2021 19:02: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": "8" }, "ResponseBody": { - "jobId": "f8e42018-1dff-4a10-96dd-cf36d139a78e", - "lastUpdateDateTime": "2021-05-27T18:08:04Z", - "createdDateTime": "2021-05-27T18:07:59Z", - "expirationDateTime": "2021-05-28T18:07:59Z", + "jobId": "d69c2278-619f-49e7-bed7-f43a55af4d92", + "lastUpdateDateTime": "2021-06-29T19:02:32Z", + "createdDateTime": "2021-06-29T19:02:31Z", + "expirationDateTime": "2021-06-30T19:02:31Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:08:04Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -337,39 +308,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/f8e42018-1dff-4a10-96dd-cf36d139a78e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/d69c2278-619f-49e7-bed7-f43a55af4d92", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7429e9c3888508191740b775e7a7bc5e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "def36374-ea42-4662-9d30-525c3f08dc95", + "apim-request-id": "d8e7ca3a-d8ea-4635-9e70-24ffa4238c9b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:08:10 GMT", + "Date": "Tue, 29 Jun 2021 19:02:38 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": "6" }, "ResponseBody": { - "jobId": "f8e42018-1dff-4a10-96dd-cf36d139a78e", - "lastUpdateDateTime": "2021-05-27T18:08:04Z", - "createdDateTime": "2021-05-27T18:07:59Z", - "expirationDateTime": "2021-05-28T18:07:59Z", + "jobId": "d69c2278-619f-49e7-bed7-f43a55af4d92", + "lastUpdateDateTime": "2021-06-29T19:02:32Z", + "createdDateTime": "2021-06-29T19:02:31Z", + "expirationDateTime": "2021-06-30T19:02:31Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:08:04Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -378,39 +345,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/f8e42018-1dff-4a10-96dd-cf36d139a78e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/d69c2278-619f-49e7-bed7-f43a55af4d92", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "39d1b6db57b74beb755b3ad261df1717", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fee5f5ea-df06-41fc-b3c9-9eea41983025", + "apim-request-id": "af04abc7-f9d3-4ba3-b7bb-004fe33c4cf2", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:08:11 GMT", + "Date": "Tue, 29 Jun 2021 19:02:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "f8e42018-1dff-4a10-96dd-cf36d139a78e", - "lastUpdateDateTime": "2021-05-27T18:08:04Z", - "createdDateTime": "2021-05-27T18:07:59Z", - "expirationDateTime": "2021-05-28T18:07:59Z", + "jobId": "d69c2278-619f-49e7-bed7-f43a55af4d92", + "lastUpdateDateTime": "2021-06-29T19:02:32Z", + "createdDateTime": "2021-06-29T19:02:31Z", + "expirationDateTime": "2021-06-30T19:02:31Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:08:04Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -419,39 +382,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/f8e42018-1dff-4a10-96dd-cf36d139a78e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/d69c2278-619f-49e7-bed7-f43a55af4d92", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "437ca6414b1f9f34dd26d366c0fa532c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9c1fa238-b93f-499b-942f-918b9551ab71", + "apim-request-id": "5887d95c-4273-4afa-a17a-1da20ac1f332", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:08:12 GMT", + "Date": "Tue, 29 Jun 2021 19:02: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-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "f8e42018-1dff-4a10-96dd-cf36d139a78e", - "lastUpdateDateTime": "2021-05-27T18:08:04Z", - "createdDateTime": "2021-05-27T18:07:59Z", - "expirationDateTime": "2021-05-28T18:07:59Z", + "jobId": "d69c2278-619f-49e7-bed7-f43a55af4d92", + "lastUpdateDateTime": "2021-06-29T19:02:32Z", + "createdDateTime": "2021-06-29T19:02:31Z", + "expirationDateTime": "2021-06-30T19:02:31Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:08:04Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -460,39 +419,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/f8e42018-1dff-4a10-96dd-cf36d139a78e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/d69c2278-619f-49e7-bed7-f43a55af4d92", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f65b91de87966be7fddeff2a4e47a737", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0752ff73-6b4c-45da-8193-f4977e399ca8", + "apim-request-id": "71488c10-972b-4581-8f83-c08782e15ea3", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:08:13 GMT", + "Date": "Tue, 29 Jun 2021 19:02: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": "f8e42018-1dff-4a10-96dd-cf36d139a78e", - "lastUpdateDateTime": "2021-05-27T18:08:04Z", - "createdDateTime": "2021-05-27T18:07:59Z", - "expirationDateTime": "2021-05-28T18:07:59Z", + "jobId": "d69c2278-619f-49e7-bed7-f43a55af4d92", + "lastUpdateDateTime": "2021-06-29T19:02:32Z", + "createdDateTime": "2021-06-29T19:02:31Z", + "expirationDateTime": "2021-06-30T19:02:31Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:08:04Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -501,39 +456,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/f8e42018-1dff-4a10-96dd-cf36d139a78e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/d69c2278-619f-49e7-bed7-f43a55af4d92", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4033a028792a903f81325b9183858a7a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "594b980e-2a27-4c27-a28c-ee328d79a4d3", + "apim-request-id": "fd7fbeaa-d209-417a-9392-15d695c3582b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:08:14 GMT", + "Date": "Tue, 29 Jun 2021 19:02: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": "f8e42018-1dff-4a10-96dd-cf36d139a78e", - "lastUpdateDateTime": "2021-05-27T18:08:04Z", - "createdDateTime": "2021-05-27T18:07:59Z", - "expirationDateTime": "2021-05-28T18:07:59Z", + "jobId": "d69c2278-619f-49e7-bed7-f43a55af4d92", + "lastUpdateDateTime": "2021-06-29T19:02:32Z", + "createdDateTime": "2021-06-29T19:02:31Z", + "expirationDateTime": "2021-06-30T19:02:31Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:08:04Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -542,39 +493,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/f8e42018-1dff-4a10-96dd-cf36d139a78e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/d69c2278-619f-49e7-bed7-f43a55af4d92", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d0f30d072183ba81be1046404b095196", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d90ece10-f519-4aa3-88f1-03d3e6734169", + "apim-request-id": "12a84aaf-65a0-4bcf-8926-b18d0e839d3a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:08:15 GMT", + "Date": "Tue, 29 Jun 2021 19:02:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "f8e42018-1dff-4a10-96dd-cf36d139a78e", - "lastUpdateDateTime": "2021-05-27T18:08:04Z", - "createdDateTime": "2021-05-27T18:07:59Z", - "expirationDateTime": "2021-05-28T18:07:59Z", + "jobId": "d69c2278-619f-49e7-bed7-f43a55af4d92", + "lastUpdateDateTime": "2021-06-29T19:02:32Z", + "createdDateTime": "2021-06-29T19:02:31Z", + "expirationDateTime": "2021-06-30T19:02:31Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:08:04Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -583,39 +530,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/f8e42018-1dff-4a10-96dd-cf36d139a78e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/d69c2278-619f-49e7-bed7-f43a55af4d92", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "203d9b7e12c6650251cb74632b56e877", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bea55912-71a9-456c-8caa-d5d265dd5ead", + "apim-request-id": "0468c5a8-5a27-4df8-a0b8-c59c1e103624", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:08:16 GMT", + "Date": "Tue, 29 Jun 2021 19:02:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "f8e42018-1dff-4a10-96dd-cf36d139a78e", - "lastUpdateDateTime": "2021-05-27T18:08:04Z", - "createdDateTime": "2021-05-27T18:07:59Z", - "expirationDateTime": "2021-05-28T18:07:59Z", + "jobId": "d69c2278-619f-49e7-bed7-f43a55af4d92", + "lastUpdateDateTime": "2021-06-29T19:02:32Z", + "createdDateTime": "2021-06-29T19:02:31Z", + "expirationDateTime": "2021-06-30T19:02:31Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:08:04Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -624,39 +567,36 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/f8e42018-1dff-4a10-96dd-cf36d139a78e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/d69c2278-619f-49e7-bed7-f43a55af4d92", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "40238554d75307b41f79811932fe4478", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c6a05e13-9e83-4ee3-96be-caf5baa894ae", + "apim-request-id": "b3ce00cb-9ce4-48a6-913e-2f3e40a22e31", + "Connection": "close", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:08:17 GMT", + "Date": "Tue, 29 Jun 2021 19:02:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "f8e42018-1dff-4a10-96dd-cf36d139a78e", - "lastUpdateDateTime": "2021-05-27T18:08:04Z", - "createdDateTime": "2021-05-27T18:07:59Z", - "expirationDateTime": "2021-05-28T18:07:59Z", + "jobId": "d69c2278-619f-49e7-bed7-f43a55af4d92", + "lastUpdateDateTime": "2021-06-29T19:02:32Z", + "createdDateTime": "2021-06-29T19:02:31Z", + "expirationDateTime": "2021-06-30T19:02:31Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:08:04Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -665,39 +605,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/f8e42018-1dff-4a10-96dd-cf36d139a78e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/d69c2278-619f-49e7-bed7-f43a55af4d92", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e812c5e16a48f4b30b8d7eb8ad1d8e68", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "63df10e2-6ca6-4cc8-a395-faeb1722987e", + "apim-request-id": "329065ca-bdd4-4681-a261-0ca84403ed91", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:08:18 GMT", + "Date": "Tue, 29 Jun 2021 19:02:48 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": "6" }, "ResponseBody": { - "jobId": "f8e42018-1dff-4a10-96dd-cf36d139a78e", - "lastUpdateDateTime": "2021-05-27T18:08:04Z", - "createdDateTime": "2021-05-27T18:07:59Z", - "expirationDateTime": "2021-05-28T18:07:59Z", + "jobId": "d69c2278-619f-49e7-bed7-f43a55af4d92", + "lastUpdateDateTime": "2021-06-29T19:02:32Z", + "createdDateTime": "2021-06-29T19:02:31Z", + "expirationDateTime": "2021-06-30T19:02:31Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:08:04Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -706,39 +642,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/f8e42018-1dff-4a10-96dd-cf36d139a78e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/d69c2278-619f-49e7-bed7-f43a55af4d92", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c6ecce2810e6a743e736004d90e83253", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6aa27c3e-e669-4146-9f82-5a54afe58999", + "apim-request-id": "ebf9355f-8f32-4836-9432-8982e56c5742", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:08:20 GMT", + "Date": "Tue, 29 Jun 2021 19:02:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "f8e42018-1dff-4a10-96dd-cf36d139a78e", - "lastUpdateDateTime": "2021-05-27T18:08:04Z", - "createdDateTime": "2021-05-27T18:07:59Z", - "expirationDateTime": "2021-05-28T18:07:59Z", + "jobId": "d69c2278-619f-49e7-bed7-f43a55af4d92", + "lastUpdateDateTime": "2021-06-29T19:02:32Z", + "createdDateTime": "2021-06-29T19:02:31Z", + "expirationDateTime": "2021-06-30T19:02:31Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:08:04Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -747,39 +679,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/f8e42018-1dff-4a10-96dd-cf36d139a78e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/d69c2278-619f-49e7-bed7-f43a55af4d92", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6682fb870043ea2fd22e35c559fb5902", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "38b8b283-d988-4ee5-8b3c-d2cae84d7f84", + "apim-request-id": "eb32d54f-a6db-428d-877f-cd5f84563e2d", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:08:21 GMT", + "Date": "Tue, 29 Jun 2021 19:02:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "f8e42018-1dff-4a10-96dd-cf36d139a78e", - "lastUpdateDateTime": "2021-05-27T18:08:04Z", - "createdDateTime": "2021-05-27T18:07:59Z", - "expirationDateTime": "2021-05-28T18:07:59Z", + "jobId": "d69c2278-619f-49e7-bed7-f43a55af4d92", + "lastUpdateDateTime": "2021-06-29T19:02:32Z", + "createdDateTime": "2021-06-29T19:02:31Z", + "expirationDateTime": "2021-06-30T19:02:31Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:08:04Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -788,39 +716,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/f8e42018-1dff-4a10-96dd-cf36d139a78e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/d69c2278-619f-49e7-bed7-f43a55af4d92", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "64f019ea7e11d192816b001269656422", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "21b60ef2-cb56-4ebc-84c9-e896b3a8f713", + "apim-request-id": "3e8e1466-eea3-4304-846e-643a7bf4dc45", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:08:22 GMT", + "Date": "Tue, 29 Jun 2021 19:02: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": "f8e42018-1dff-4a10-96dd-cf36d139a78e", - "lastUpdateDateTime": "2021-05-27T18:08:04Z", - "createdDateTime": "2021-05-27T18:07:59Z", - "expirationDateTime": "2021-05-28T18:07:59Z", + "jobId": "d69c2278-619f-49e7-bed7-f43a55af4d92", + "lastUpdateDateTime": "2021-06-29T19:02:32Z", + "createdDateTime": "2021-06-29T19:02:31Z", + "expirationDateTime": "2021-06-30T19:02:31Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:08:04Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -829,39 +753,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/f8e42018-1dff-4a10-96dd-cf36d139a78e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/d69c2278-619f-49e7-bed7-f43a55af4d92", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b1302b5b289b28259f02f3b8da7d4deb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fac22233-e614-4463-b7a9-4fcf5e5f9196", + "apim-request-id": "d8f3330e-276f-4cce-8990-49b141816801", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:08:23 GMT", + "Date": "Tue, 29 Jun 2021 19:02:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "f8e42018-1dff-4a10-96dd-cf36d139a78e", - "lastUpdateDateTime": "2021-05-27T18:08:04Z", - "createdDateTime": "2021-05-27T18:07:59Z", - "expirationDateTime": "2021-05-28T18:07:59Z", + "jobId": "d69c2278-619f-49e7-bed7-f43a55af4d92", + "lastUpdateDateTime": "2021-06-29T19:02:32Z", + "createdDateTime": "2021-06-29T19:02:31Z", + "expirationDateTime": "2021-06-30T19:02:31Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:08:04Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -870,39 +790,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/f8e42018-1dff-4a10-96dd-cf36d139a78e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/d69c2278-619f-49e7-bed7-f43a55af4d92", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7762fedccef8094169b0e4d7ff1c806c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8b932b3e-662f-438a-9ffc-bfbd5ce289ee", + "apim-request-id": "2ef301f1-83e7-4973-8f01-4d9c432d12ba", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:08:24 GMT", + "Date": "Tue, 29 Jun 2021 19:02:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { - "jobId": "f8e42018-1dff-4a10-96dd-cf36d139a78e", - "lastUpdateDateTime": "2021-05-27T18:08:04Z", - "createdDateTime": "2021-05-27T18:07:59Z", - "expirationDateTime": "2021-05-28T18:07:59Z", + "jobId": "d69c2278-619f-49e7-bed7-f43a55af4d92", + "lastUpdateDateTime": "2021-06-29T19:02:32Z", + "createdDateTime": "2021-06-29T19:02:31Z", + "expirationDateTime": "2021-06-30T19:02:31Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:08:04Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -911,39 +827,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/f8e42018-1dff-4a10-96dd-cf36d139a78e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/d69c2278-619f-49e7-bed7-f43a55af4d92", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2d6a13caa8cbc266f4c7c40e8ad9f604", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a7db1391-f1bd-4ce9-8c50-42832f6e04d1", + "apim-request-id": "48de67d2-542f-44d2-b4f3-b3dcbd4a0551", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:08:25 GMT", + "Date": "Tue, 29 Jun 2021 19:02:54 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": "f8e42018-1dff-4a10-96dd-cf36d139a78e", - "lastUpdateDateTime": "2021-05-27T18:08:04Z", - "createdDateTime": "2021-05-27T18:07:59Z", - "expirationDateTime": "2021-05-28T18:07:59Z", + "jobId": "d69c2278-619f-49e7-bed7-f43a55af4d92", + "lastUpdateDateTime": "2021-06-29T19:02:32Z", + "createdDateTime": "2021-06-29T19:02:31Z", + "expirationDateTime": "2021-06-30T19:02:31Z", "status": "running", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:08:04Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -952,88 +864,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/f8e42018-1dff-4a10-96dd-cf36d139a78e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/d69c2278-619f-49e7-bed7-f43a55af4d92", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6a36141dec038d2ae92747ea434d2882", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6474279f-7f11-4fe6-aee5-fbf20fe86cef", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:08:26 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": "f8e42018-1dff-4a10-96dd-cf36d139a78e", - "lastUpdateDateTime": "2021-05-27T18:08:04Z", - "createdDateTime": "2021-05-27T18:07:59Z", - "expirationDateTime": "2021-05-28T18:07:59Z", - "status": "running", - "errors": [], - "displayName": "NA", - "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:08:04Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/f8e42018-1dff-4a10-96dd-cf36d139a78e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c7ee87822012332097a0833009327f8f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "da00e04d-c026-4eee-b9ff-969dc4f43b0d", + "apim-request-id": "27a019d9-ba3f-4561-98f6-d0fbb3790fb5", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:08:27 GMT", + "Date": "Tue, 29 Jun 2021 19:02:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "41" + "x-envoy-upstream-service-time": "60" }, "ResponseBody": { - "jobId": "f8e42018-1dff-4a10-96dd-cf36d139a78e", - "lastUpdateDateTime": "2021-05-27T18:08:26Z", - "createdDateTime": "2021-05-27T18:07:59Z", - "expirationDateTime": "2021-05-28T18:07:59Z", + "jobId": "d69c2278-619f-49e7-bed7-f43a55af4d92", + "lastUpdateDateTime": "2021-06-29T19:02:55Z", + "createdDateTime": "2021-06-29T19:02:31Z", + "expirationDateTime": "2021-06-30T19:02:31Z", "status": "succeeded", "errors": [], "displayName": "NA", "tasks": { - "details": { - "name": "NA", - "lastUpdateDateTime": "2021-05-27T18:08:26Z" - }, "completed": 1, "failed": 0, "inProgress": 0, "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:08:26.9920822Z", - "name": "NA", + "lastUpdateDateTime": "2021-06-29T19:02:55.7158339Z", + "taskName": "KeyPhraseExtraction_latest", "state": "succeeded", "results": { "documents": [ @@ -1041,6 +908,7 @@ "id": "0", "keyPhrases": [ "Subject", + "100mg", "ibuprofen" ], "warnings": [] @@ -1059,7 +927,7 @@ } } ], - "modelVersion": "2020-07-01" + "modelVersion": "2021-06-01" } } ] 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 c0ea5e165298..98520602cd15 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.1-preview.5/analyze", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "312", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fd4634f09579174da4dce0e7bd3cfc54-3755e2240b2f4f4d-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-292df725f2c4924c8d8a873405e402f1-34abab49d9289240-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "a87cf6cc9d26e81e4ad3c40561433cdc", "x-ms-return-client-request-id": "true" }, @@ -39,50 +45,52 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "f4882fef-c082-4fb0-83f3-2401a8fac528", - "Date": "Thu, 03 Jun 2021 18:22:51 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/fe8c2204-0b67-4bae-b1ca-5a9e60a75566", + "apim-request-id": "c1c01b43-7a92-4f00-b3d7-38e12cf08e1e", + "Date": "Tue, 29 Jun 2021 19:16:43 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/29baaeb9-cfc5-4022-808e-cb190f217b4c", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7803" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "210" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/fe8c2204-0b67-4bae-b1ca-5a9e60a75566", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/29baaeb9-cfc5-4022-808e-cb190f217b4c", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "b7c560e0-03c5-4611-be9f-71ac0332bf88", + "apim-request-id": "c17a8256-6406-4566-9735-68a13ad0ff88", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:22:51 GMT", + "Date": "Tue, 29 Jun 2021 19:16: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": "11" }, "ResponseBody": { - "jobId": "fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "lastUpdateDateTime": "2021-06-03T18:22:51Z", - "createdDateTime": "2021-06-03T18:22:44Z", - "expirationDateTime": "2021-06-04T18:22:44Z", + "jobId": "29baaeb9-cfc5-4022-808e-cb190f217b4c", + "lastUpdateDateTime": "2021-06-29T19:16:44Z", + "createdDateTime": "2021-06-29T19:16:44Z", + "expirationDateTime": "2021-06-30T19:16:44Z", "status": "notStarted", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:22:51Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -91,39 +99,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/fe8c2204-0b67-4bae-b1ca-5a9e60a75566", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/29baaeb9-cfc5-4022-808e-cb190f217b4c", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "ef889116-ad80-44c0-be65-d8098ca34867", + "apim-request-id": "f6a6fdf9-faa4-4067-9a7b-4e66756c0bef", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:22:52 GMT", + "Date": "Tue, 29 Jun 2021 19:16:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "14" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "lastUpdateDateTime": "2021-06-03T18:22:53Z", - "createdDateTime": "2021-06-03T18:22:44Z", - "expirationDateTime": "2021-06-04T18:22:44Z", - "status": "running", + "jobId": "29baaeb9-cfc5-4022-808e-cb190f217b4c", + "lastUpdateDateTime": "2021-06-29T19:16:44Z", + "createdDateTime": "2021-06-29T19:16:44Z", + "expirationDateTime": "2021-06-30T19:16:44Z", + "status": "notStarted", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:22:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -132,39 +142,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/fe8c2204-0b67-4bae-b1ca-5a9e60a75566", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/29baaeb9-cfc5-4022-808e-cb190f217b4c", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "58f0c645-6925-4353-843a-b14bf95c5479", + "apim-request-id": "472b08b4-c1c1-4e09-ac64-8bc1662a30c2", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:22:53 GMT", + "Date": "Tue, 29 Jun 2021 19:16:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { - "jobId": "fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "lastUpdateDateTime": "2021-06-03T18:22:53Z", - "createdDateTime": "2021-06-03T18:22:44Z", - "expirationDateTime": "2021-06-04T18:22:44Z", - "status": "running", + "jobId": "29baaeb9-cfc5-4022-808e-cb190f217b4c", + "lastUpdateDateTime": "2021-06-29T19:16:44Z", + "createdDateTime": "2021-06-29T19:16:44Z", + "expirationDateTime": "2021-06-30T19:16:44Z", + "status": "notStarted", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:22:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -173,39 +185,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/fe8c2204-0b67-4bae-b1ca-5a9e60a75566", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/29baaeb9-cfc5-4022-808e-cb190f217b4c", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "b2cab5fa-acf8-42f7-aab1-453bb7cd18a1", + "apim-request-id": "528d3596-0de9-4536-b12e-488e3337ade2", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:22:54 GMT", + "Date": "Tue, 29 Jun 2021 19:16:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "609" }, "ResponseBody": { - "jobId": "fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "lastUpdateDateTime": "2021-06-03T18:22:53Z", - "createdDateTime": "2021-06-03T18:22:44Z", - "expirationDateTime": "2021-06-04T18:22:44Z", + "jobId": "29baaeb9-cfc5-4022-808e-cb190f217b4c", + "lastUpdateDateTime": "2021-06-29T19:16:47Z", + "createdDateTime": "2021-06-29T19:16:44Z", + "expirationDateTime": "2021-06-30T19:16:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:22:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -214,39 +228,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/fe8c2204-0b67-4bae-b1ca-5a9e60a75566", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/29baaeb9-cfc5-4022-808e-cb190f217b4c", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "798acceb-177e-4f2f-b11c-b431c0ebf39c", + "apim-request-id": "77071b53-43c1-4b35-a69c-c241bfcf34b5", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:22:56 GMT", + "Date": "Tue, 29 Jun 2021 19:16:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "lastUpdateDateTime": "2021-06-03T18:22:53Z", - "createdDateTime": "2021-06-03T18:22:44Z", - "expirationDateTime": "2021-06-04T18:22:44Z", + "jobId": "29baaeb9-cfc5-4022-808e-cb190f217b4c", + "lastUpdateDateTime": "2021-06-29T19:16:47Z", + "createdDateTime": "2021-06-29T19:16:44Z", + "expirationDateTime": "2021-06-30T19:16:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:22:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -255,39 +271,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/fe8c2204-0b67-4bae-b1ca-5a9e60a75566", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/29baaeb9-cfc5-4022-808e-cb190f217b4c", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "8e43774b-5f0a-49fe-b09d-69f919a9849f", + "apim-request-id": "b76ae2b2-71ba-42a1-9bff-a67bb488d30f", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:22:57 GMT", + "Date": "Tue, 29 Jun 2021 19:16:50 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": "fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "lastUpdateDateTime": "2021-06-03T18:22:53Z", - "createdDateTime": "2021-06-03T18:22:44Z", - "expirationDateTime": "2021-06-04T18:22:44Z", + "jobId": "29baaeb9-cfc5-4022-808e-cb190f217b4c", + "lastUpdateDateTime": "2021-06-29T19:16:47Z", + "createdDateTime": "2021-06-29T19:16:44Z", + "expirationDateTime": "2021-06-30T19:16:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:22:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -296,39 +314,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/fe8c2204-0b67-4bae-b1ca-5a9e60a75566", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/29baaeb9-cfc5-4022-808e-cb190f217b4c", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "a6eee499-e34c-4f28-8627-9661c01ed610", + "apim-request-id": "6e0882c6-99f8-4e07-bd44-50a9bf13285c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:22:58 GMT", + "Date": "Tue, 29 Jun 2021 19: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" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "1953" }, "ResponseBody": { - "jobId": "fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "lastUpdateDateTime": "2021-06-03T18:22:53Z", - "createdDateTime": "2021-06-03T18:22:44Z", - "expirationDateTime": "2021-06-04T18:22:44Z", + "jobId": "29baaeb9-cfc5-4022-808e-cb190f217b4c", + "lastUpdateDateTime": "2021-06-29T19:16:47Z", + "createdDateTime": "2021-06-29T19:16:44Z", + "expirationDateTime": "2021-06-30T19:16:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:22:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -337,39 +357,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/fe8c2204-0b67-4bae-b1ca-5a9e60a75566", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/29baaeb9-cfc5-4022-808e-cb190f217b4c", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; 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": "a5a22875-ed02-4814-9127-b52ab050c556", + "apim-request-id": "53294d20-056a-454a-bf77-f2f940cd21c3", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:22:59 GMT", + "Date": "Tue, 29 Jun 2021 19:16:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "71" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "lastUpdateDateTime": "2021-06-03T18:22:53Z", - "createdDateTime": "2021-06-03T18:22:44Z", - "expirationDateTime": "2021-06-04T18:22:44Z", + "jobId": "29baaeb9-cfc5-4022-808e-cb190f217b4c", + "lastUpdateDateTime": "2021-06-29T19:16:47Z", + "createdDateTime": "2021-06-29T19:16:44Z", + "expirationDateTime": "2021-06-30T19:16:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:22:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -378,39 +400,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/fe8c2204-0b67-4bae-b1ca-5a9e60a75566", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/29baaeb9-cfc5-4022-808e-cb190f217b4c", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "1374dca6cec8de7319b97122f2fe385c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f1b7dc0b-9f80-455a-b99e-e89dc999523e", + "apim-request-id": "5c5aa19f-e34a-45ea-9753-d1eea858d1a8", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:00 GMT", + "Date": "Tue, 29 Jun 2021 19:16:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "25" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "lastUpdateDateTime": "2021-06-03T18:22:53Z", - "createdDateTime": "2021-06-03T18:22:44Z", - "expirationDateTime": "2021-06-04T18:22:44Z", + "jobId": "29baaeb9-cfc5-4022-808e-cb190f217b4c", + "lastUpdateDateTime": "2021-06-29T19:16:47Z", + "createdDateTime": "2021-06-29T19:16:44Z", + "expirationDateTime": "2021-06-30T19:16:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:22:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -419,39 +443,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/fe8c2204-0b67-4bae-b1ca-5a9e60a75566", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/29baaeb9-cfc5-4022-808e-cb190f217b4c", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "2f3a9c0047dba28d5fe7fa49e2eb3303", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "72688887-38a7-4500-997d-0eaac4932d5f", + "apim-request-id": "9c50f595-862f-4cc8-936c-ce7ae1b31629", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:01 GMT", + "Date": "Tue, 29 Jun 2021 19:16:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "lastUpdateDateTime": "2021-06-03T18:22:53Z", - "createdDateTime": "2021-06-03T18:22:44Z", - "expirationDateTime": "2021-06-04T18:22:44Z", + "jobId": "29baaeb9-cfc5-4022-808e-cb190f217b4c", + "lastUpdateDateTime": "2021-06-29T19:16:47Z", + "createdDateTime": "2021-06-29T19:16:44Z", + "expirationDateTime": "2021-06-30T19:16:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:22:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -460,39 +486,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/fe8c2204-0b67-4bae-b1ca-5a9e60a75566", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/29baaeb9-cfc5-4022-808e-cb190f217b4c", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "4bba49fa46f6c6b2f1f2836cfa90b189", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c933015c-af5d-4bdc-b005-74018b1d8d78", + "apim-request-id": "d66fadc4-fc47-41fa-8b21-2008bf479bb4", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:02 GMT", + "Date": "Tue, 29 Jun 2021 19:16: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": "7" }, "ResponseBody": { - "jobId": "fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "lastUpdateDateTime": "2021-06-03T18:22:53Z", - "createdDateTime": "2021-06-03T18:22:44Z", - "expirationDateTime": "2021-06-04T18:22:44Z", + "jobId": "29baaeb9-cfc5-4022-808e-cb190f217b4c", + "lastUpdateDateTime": "2021-06-29T19:16:47Z", + "createdDateTime": "2021-06-29T19:16:44Z", + "expirationDateTime": "2021-06-30T19:16:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:22:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -501,39 +529,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/fe8c2204-0b67-4bae-b1ca-5a9e60a75566", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/29baaeb9-cfc5-4022-808e-cb190f217b4c", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "91448dc5de3f5fac4ed1b4e0d329fb2d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d2e184a1-0d6a-4bda-973a-0273be3dbf98", + "apim-request-id": "df079c08-6a42-49b7-88f8-9a61a015b3d3", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:03 GMT", + "Date": "Tue, 29 Jun 2021 19:16:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "lastUpdateDateTime": "2021-06-03T18:22:53Z", - "createdDateTime": "2021-06-03T18:22:44Z", - "expirationDateTime": "2021-06-04T18:22:44Z", + "jobId": "29baaeb9-cfc5-4022-808e-cb190f217b4c", + "lastUpdateDateTime": "2021-06-29T19:16:47Z", + "createdDateTime": "2021-06-29T19:16:44Z", + "expirationDateTime": "2021-06-30T19:16:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:22:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -542,39 +572,41 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/fe8c2204-0b67-4bae-b1ca-5a9e60a75566", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/29baaeb9-cfc5-4022-808e-cb190f217b4c", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "a8276e85ec43b966ea743de9c420a8ce", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e728238f-0c1e-48e8-aa96-bd9ebe4c2e55", + "apim-request-id": "f6c926dd-f18e-40a6-9a57-aaa31dac9837", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:04 GMT", + "Date": "Tue, 29 Jun 2021 19:17:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "lastUpdateDateTime": "2021-06-03T18:22:53Z", - "createdDateTime": "2021-06-03T18:22:44Z", - "expirationDateTime": "2021-06-04T18:22:44Z", + "jobId": "29baaeb9-cfc5-4022-808e-cb190f217b4c", + "lastUpdateDateTime": "2021-06-29T19:16:47Z", + "createdDateTime": "2021-06-29T19:16:44Z", + "expirationDateTime": "2021-06-30T19:16:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:22:53Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -583,621 +615,49 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/fe8c2204-0b67-4bae-b1ca-5a9e60a75566", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/29baaeb9-cfc5-4022-808e-cb190f217b4c", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1", + "(.NET 5.0.7; Microsoft Windows 10.0.19043)" + ], "x-ms-client-request-id": "54847136a2a61bc49d5bfc2592d2f3c8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6a782c7b-c475-44b6-bbbd-581421a2bc38", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:05 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": "fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "lastUpdateDateTime": "2021-06-03T18:22:53Z", - "createdDateTime": "2021-06-03T18:22:44Z", - "expirationDateTime": "2021-06-04T18:22:44Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:22:53Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8be655f60868d945278ba6caa1c39a2e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5661e403-db5f-4de3-a7b1-8910ffd338ab", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:06 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": "fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "lastUpdateDateTime": "2021-06-03T18:22:53Z", - "createdDateTime": "2021-06-03T18:22:44Z", - "expirationDateTime": "2021-06-04T18:22:44Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:22:53Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "61aae528a6a5e386a90b0be8ef402717", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "22dcef5e-e5b0-4f09-9f58-767715b2d367", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23: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": "fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "lastUpdateDateTime": "2021-06-03T18:22:53Z", - "createdDateTime": "2021-06-03T18:22:44Z", - "expirationDateTime": "2021-06-04T18:22:44Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:22:53Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6ef375801c3a2d662caa2d1bfbf97ada", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3a8bcd1f-5765-42d5-9a54-dd630ecfec68", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23: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": "fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "lastUpdateDateTime": "2021-06-03T18:22:53Z", - "createdDateTime": "2021-06-03T18:22:44Z", - "expirationDateTime": "2021-06-04T18:22:44Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:22:53Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "acfdcec091284f23ce03e25cfd5ceae7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5eaa1576-19e1-4d38-9931-41fbf3d3a2c6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23: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": "fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "lastUpdateDateTime": "2021-06-03T18:22:53Z", - "createdDateTime": "2021-06-03T18:22:44Z", - "expirationDateTime": "2021-06-04T18:22:44Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:22:53Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "2c4a8f642cd00bf37f7c35fa796be8b0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "dd115186-76cb-412b-8bf8-15ae4cf31b21", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23: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": "fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "lastUpdateDateTime": "2021-06-03T18:22:53Z", - "createdDateTime": "2021-06-03T18:22:44Z", - "expirationDateTime": "2021-06-04T18:22:44Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:22:53Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "202831917a42efef51a39f373a092fcf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "485a7826-6bca-4b34-8cb9-3c33320bc2fa", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23: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": "fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "lastUpdateDateTime": "2021-06-03T18:22:53Z", - "createdDateTime": "2021-06-03T18:22:44Z", - "expirationDateTime": "2021-06-04T18:22:44Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:22:53Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6cb745c04eaf940adbf12dab5c28d563", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b3a3ad81-668b-42d6-abc2-21c83ecb9d29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23: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": "fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "lastUpdateDateTime": "2021-06-03T18:22:53Z", - "createdDateTime": "2021-06-03T18:22:44Z", - "expirationDateTime": "2021-06-04T18:22:44Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:22:53Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "cccb311bc934e9a49f5ada2c8cbcd175", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "bc642e4f-437e-4b02-af3a-61c7c21eb58d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23: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": "fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "lastUpdateDateTime": "2021-06-03T18:22:53Z", - "createdDateTime": "2021-06-03T18:22:44Z", - "expirationDateTime": "2021-06-04T18:22:44Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:22:53Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "343a654c7bb34300279445514d439229", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f8bd79b8-98c6-4e65-84e9-d4b1a8a3b415", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:15 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": "fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "lastUpdateDateTime": "2021-06-03T18:22:53Z", - "createdDateTime": "2021-06-03T18:22:44Z", - "expirationDateTime": "2021-06-04T18:22:44Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:22:53Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "081c3cce633ef69ba0cdcc5473dd071e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2100e2a6-9442-465e-aeba-830b41261e29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23: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": "fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "lastUpdateDateTime": "2021-06-03T18:22:53Z", - "createdDateTime": "2021-06-03T18:22:44Z", - "expirationDateTime": "2021-06-04T18:22:44Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:22:53Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f75eb720a0ed9faf3187a4a083539c5c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "68819c26-3317-4b15-a918-c80c5a5c7ec1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23: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": "fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "lastUpdateDateTime": "2021-06-03T18:22:53Z", - "createdDateTime": "2021-06-03T18:22:44Z", - "expirationDateTime": "2021-06-04T18:22:44Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:22:53Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "505db1c8c8a0e936c94393e6afabcf49", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "92784348-a38d-4a1b-a276-e7b7c96eb31a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23: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": "fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "lastUpdateDateTime": "2021-06-03T18:22:53Z", - "createdDateTime": "2021-06-03T18:22:44Z", - "expirationDateTime": "2021-06-04T18:22:44Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:22:53Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9531268c9be42d3b8c7cd7b6bffb724d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "281ac9c1-da3b-45d8-8948-06c3df497fd1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23: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": "fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "lastUpdateDateTime": "2021-06-03T18:22:53Z", - "createdDateTime": "2021-06-03T18:22:44Z", - "expirationDateTime": "2021-06-04T18:22:44Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithLanguageTest", - "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:22:53Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c28c7030b680577e80752daa0cc8ef85", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "65bd3e59-7794-420f-bb4a-0e3767d89b42", + "apim-request-id": "a9496ca8-8554-4e0f-ae8b-2c70fdf4f3c8", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:22 GMT", + "Date": "Tue, 29 Jun 2021 19:17:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2681" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "61" }, "ResponseBody": { - "jobId": "fe8c2204-0b67-4bae-b1ca-5a9e60a75566", - "lastUpdateDateTime": "2021-06-03T18:23:20Z", - "createdDateTime": "2021-06-03T18:22:44Z", - "expirationDateTime": "2021-06-04T18:22:44Z", + "jobId": "29baaeb9-cfc5-4022-808e-cb190f217b4c", + "lastUpdateDateTime": "2021-06-29T19:17:00Z", + "createdDateTime": "2021-06-29T19:16:44Z", + "expirationDateTime": "2021-06-30T19:16:44Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:23:20Z" - }, "completed": 1, "failed": 0, "inProgress": 0, "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:20.5053271Z", - "name": "AnalyzeOperationWithLanguageTest", + "lastUpdateDateTime": "2021-06-29T19:17:00.9222266Z", + "taskName": "KeyPhraseExtraction_latest", "state": "succeeded", "results": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTestAsync.json index bf901db8bccd..6af0547931ec 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "312", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1fedf8f44901c148b68595f7ad52c8fc-d6b677db69a96d40-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-a83a658733d63643a8d98452e3947791-890c470fc694b74b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ff1f44cf0b7d52519f4611a53ca09dbe", "x-ms-return-client-request-id": "true" }, @@ -39,50 +39,46 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "5d24f4bb-dcea-467d-8129-c728c77f9260", - "Date": "Thu, 03 Jun 2021 18:24:00 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/574cfa76-efc3-4103-8cac-ac36e5c60ca9", + "apim-request-id": "9ef64772-c99c-4710-808f-94c8b28d7325", + "Date": "Tue, 29 Jun 2021 19:02:55 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", "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": "240" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/574cfa76-efc3-4103-8cac-ac36e5c60ca9", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e5fe6af6690f6491194fc0223b355da1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "44e1a7e8-1211-4075-ba77-bd0681e3982f", + "apim-request-id": "e5200d50-b97e-4395-b050-5d7df6db21ac", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:00 GMT", + "Date": "Tue, 29 Jun 2021 19:02:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { - "jobId": "574cfa76-efc3-4103-8cac-ac36e5c60ca9", - "lastUpdateDateTime": "2021-06-03T18:24:00Z", - "createdDateTime": "2021-06-03T18:24:00Z", - "expirationDateTime": "2021-06-04T18:24:00Z", + "jobId": "ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", + "lastUpdateDateTime": "2021-06-29T19:02:56Z", + "createdDateTime": "2021-06-29T19:02:55Z", + "expirationDateTime": "2021-06-30T19:02:55Z", "status": "notStarted", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:24:00Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -91,39 +87,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/574cfa76-efc3-4103-8cac-ac36e5c60ca9", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c22721a113540c5c7d4db56795b725e8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "11f99eb4-7c17-4dec-8cb6-4646a1aafe22", + "apim-request-id": "178daed8-b044-4fa5-8969-201810af473c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:01 GMT", + "Date": "Tue, 29 Jun 2021 19:02: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": "574cfa76-efc3-4103-8cac-ac36e5c60ca9", - "lastUpdateDateTime": "2021-06-03T18:24:01Z", - "createdDateTime": "2021-06-03T18:24:00Z", - "expirationDateTime": "2021-06-04T18:24:00Z", + "jobId": "ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", + "lastUpdateDateTime": "2021-06-29T19:02:56Z", + "createdDateTime": "2021-06-29T19:02:55Z", + "expirationDateTime": "2021-06-30T19:02:55Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:24:01Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -132,39 +124,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/574cfa76-efc3-4103-8cac-ac36e5c60ca9", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c5f8bf9fc78e66c8b2bbe62e4a2e1669", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c4588374-7ec0-4a05-a060-fcb8485553b3", + "apim-request-id": "f24a03b6-10e3-4c78-94d7-a696592f2dec", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:02 GMT", + "Date": "Tue, 29 Jun 2021 19:02:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { - "jobId": "574cfa76-efc3-4103-8cac-ac36e5c60ca9", - "lastUpdateDateTime": "2021-06-03T18:24:01Z", - "createdDateTime": "2021-06-03T18:24:00Z", - "expirationDateTime": "2021-06-04T18:24:00Z", + "jobId": "ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", + "lastUpdateDateTime": "2021-06-29T19:02:56Z", + "createdDateTime": "2021-06-29T19:02:55Z", + "expirationDateTime": "2021-06-30T19:02:55Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:24:01Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -173,39 +161,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/574cfa76-efc3-4103-8cac-ac36e5c60ca9", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1b036fe8da78e36a0df268c1b329cf61", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fd49ea24-eabe-4636-bfb7-ebe5df0ce706", + "apim-request-id": "e7529718-7a4c-4932-98f3-5bfdf74ef407", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:03 GMT", + "Date": "Tue, 29 Jun 2021 19:02:59 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": "7" }, "ResponseBody": { - "jobId": "574cfa76-efc3-4103-8cac-ac36e5c60ca9", - "lastUpdateDateTime": "2021-06-03T18:24:01Z", - "createdDateTime": "2021-06-03T18:24:00Z", - "expirationDateTime": "2021-06-04T18:24:00Z", + "jobId": "ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", + "lastUpdateDateTime": "2021-06-29T19:02:56Z", + "createdDateTime": "2021-06-29T19:02:55Z", + "expirationDateTime": "2021-06-30T19:02:55Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:24:01Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -214,39 +198,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/574cfa76-efc3-4103-8cac-ac36e5c60ca9", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7c83d729973dd91359c00f992c2ec14e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7dd1afa8-5556-4619-8576-b3c7f868e63a", + "apim-request-id": "5aadbeee-8a10-43e2-9dd3-dd92022fcc45", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:04 GMT", + "Date": "Tue, 29 Jun 2021 19:03:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "574cfa76-efc3-4103-8cac-ac36e5c60ca9", - "lastUpdateDateTime": "2021-06-03T18:24:01Z", - "createdDateTime": "2021-06-03T18:24:00Z", - "expirationDateTime": "2021-06-04T18:24:00Z", + "jobId": "ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", + "lastUpdateDateTime": "2021-06-29T19:02:56Z", + "createdDateTime": "2021-06-29T19:02:55Z", + "expirationDateTime": "2021-06-30T19:02:55Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:24:01Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -255,39 +235,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/574cfa76-efc3-4103-8cac-ac36e5c60ca9", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "257e4b370ab3c4705515b89c5f06b288", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ecba3c6e-7138-46ea-8e0c-2c5de4353e70", + "apim-request-id": "5713c0dd-b33c-41a9-beda-a933d2c040df", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:05 GMT", + "Date": "Tue, 29 Jun 2021 19:03: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": "574cfa76-efc3-4103-8cac-ac36e5c60ca9", - "lastUpdateDateTime": "2021-06-03T18:24:01Z", - "createdDateTime": "2021-06-03T18:24:00Z", - "expirationDateTime": "2021-06-04T18:24:00Z", + "jobId": "ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", + "lastUpdateDateTime": "2021-06-29T19:02:56Z", + "createdDateTime": "2021-06-29T19:02:55Z", + "expirationDateTime": "2021-06-30T19:02:55Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:24:01Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -296,39 +272,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/574cfa76-efc3-4103-8cac-ac36e5c60ca9", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "720484eb99ab512c5c2ac1b8cbd1b6df", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fdb7f9a9-62b2-4255-8637-6cd520f2c112", + "apim-request-id": "3dcc0407-0186-487e-b239-bea53a56b76c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:06 GMT", + "Date": "Tue, 29 Jun 2021 19:03: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": "12" }, "ResponseBody": { - "jobId": "574cfa76-efc3-4103-8cac-ac36e5c60ca9", - "lastUpdateDateTime": "2021-06-03T18:24:01Z", - "createdDateTime": "2021-06-03T18:24:00Z", - "expirationDateTime": "2021-06-04T18:24:00Z", + "jobId": "ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", + "lastUpdateDateTime": "2021-06-29T19:02:56Z", + "createdDateTime": "2021-06-29T19:02:55Z", + "expirationDateTime": "2021-06-30T19:02:55Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:24:01Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -337,39 +309,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/574cfa76-efc3-4103-8cac-ac36e5c60ca9", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "688a1930aaab1ead67be2628df767953", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "87c2fcd6-35b7-44ea-b64e-5dc81fa173b6", + "apim-request-id": "bd2b4e65-9e85-407f-add9-c4584f225f57", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:07 GMT", + "Date": "Tue, 29 Jun 2021 19: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-envoy-upstream-service-time": "17" }, "ResponseBody": { - "jobId": "574cfa76-efc3-4103-8cac-ac36e5c60ca9", - "lastUpdateDateTime": "2021-06-03T18:24:01Z", - "createdDateTime": "2021-06-03T18:24:00Z", - "expirationDateTime": "2021-06-04T18:24:00Z", + "jobId": "ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", + "lastUpdateDateTime": "2021-06-29T19:02:56Z", + "createdDateTime": "2021-06-29T19:02:55Z", + "expirationDateTime": "2021-06-30T19:02:55Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:24:01Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -378,39 +346,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/574cfa76-efc3-4103-8cac-ac36e5c60ca9", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a8ad860d4e299da21e2dc98948b7f884", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3d17295d-74ed-4804-8214-eb78ff9ab194", + "apim-request-id": "4cbc7716-3092-4013-be84-a0ea8755e615", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:08 GMT", + "Date": "Tue, 29 Jun 2021 19:03:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "574cfa76-efc3-4103-8cac-ac36e5c60ca9", - "lastUpdateDateTime": "2021-06-03T18:24:01Z", - "createdDateTime": "2021-06-03T18:24:00Z", - "expirationDateTime": "2021-06-04T18:24:00Z", + "jobId": "ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", + "lastUpdateDateTime": "2021-06-29T19:02:56Z", + "createdDateTime": "2021-06-29T19:02:55Z", + "expirationDateTime": "2021-06-30T19:02:55Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:24:01Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -419,39 +383,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/574cfa76-efc3-4103-8cac-ac36e5c60ca9", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "466bd85e497b41ddd6e60bec730471e5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ce2836c3-38d5-488d-afef-ec0346cfaaae", + "apim-request-id": "8542f950-8f47-4e45-8068-90b6430f5b35", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:10 GMT", + "Date": "Tue, 29 Jun 2021 19:03: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": "16" }, "ResponseBody": { - "jobId": "574cfa76-efc3-4103-8cac-ac36e5c60ca9", - "lastUpdateDateTime": "2021-06-03T18:24:01Z", - "createdDateTime": "2021-06-03T18:24:00Z", - "expirationDateTime": "2021-06-04T18:24:00Z", + "jobId": "ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", + "lastUpdateDateTime": "2021-06-29T19:02:56Z", + "createdDateTime": "2021-06-29T19:02:55Z", + "expirationDateTime": "2021-06-30T19:02:55Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:24:01Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -460,39 +420,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/574cfa76-efc3-4103-8cac-ac36e5c60ca9", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "45aa6eb00e23e1b576ed497de024d5af", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0653d4f2-f189-46b5-9673-87c527032eed", + "apim-request-id": "d511068f-f042-4adc-a1a5-cf7fe8302797", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:11 GMT", + "Date": "Tue, 29 Jun 2021 19:03: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": "574cfa76-efc3-4103-8cac-ac36e5c60ca9", - "lastUpdateDateTime": "2021-06-03T18:24:01Z", - "createdDateTime": "2021-06-03T18:24:00Z", - "expirationDateTime": "2021-06-04T18:24:00Z", + "jobId": "ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", + "lastUpdateDateTime": "2021-06-29T19:02:56Z", + "createdDateTime": "2021-06-29T19:02:55Z", + "expirationDateTime": "2021-06-30T19:02:55Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:24:01Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -501,39 +457,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/574cfa76-efc3-4103-8cac-ac36e5c60ca9", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "06c9a2c5330ac3d7a86cd14343b52a1a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ca4215b0-8cc8-493e-8fb2-c531d241a761", + "apim-request-id": "21518709-f5ca-4e62-84e2-b853956ae416", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:12 GMT", + "Date": "Tue, 29 Jun 2021 19: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" }, "ResponseBody": { - "jobId": "574cfa76-efc3-4103-8cac-ac36e5c60ca9", - "lastUpdateDateTime": "2021-06-03T18:24:01Z", - "createdDateTime": "2021-06-03T18:24:00Z", - "expirationDateTime": "2021-06-04T18:24:00Z", + "jobId": "ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", + "lastUpdateDateTime": "2021-06-29T19:02:56Z", + "createdDateTime": "2021-06-29T19:02:55Z", + "expirationDateTime": "2021-06-30T19:02:55Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:24:01Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -542,39 +494,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/574cfa76-efc3-4103-8cac-ac36e5c60ca9", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dad9e3bbb30d50612389cf8e005f60b2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "029059db-9246-4b00-a5db-04283ffdd24c", + "apim-request-id": "740e535e-457c-43fb-b6db-15cefa52095f", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:13 GMT", + "Date": "Tue, 29 Jun 2021 19:03:09 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": "5" }, "ResponseBody": { - "jobId": "574cfa76-efc3-4103-8cac-ac36e5c60ca9", - "lastUpdateDateTime": "2021-06-03T18:24:01Z", - "createdDateTime": "2021-06-03T18:24:00Z", - "expirationDateTime": "2021-06-04T18:24:00Z", + "jobId": "ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", + "lastUpdateDateTime": "2021-06-29T19:02:56Z", + "createdDateTime": "2021-06-29T19:02:55Z", + "expirationDateTime": "2021-06-30T19:02:55Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:24:01Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -583,39 +531,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/574cfa76-efc3-4103-8cac-ac36e5c60ca9", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d0275b106a3a7cdb96e69cb63c719ec0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4ba4b6c3-dce1-46fb-947b-d9b75559b49a", + "apim-request-id": "d85dc33c-957b-47bd-ae54-6529e45b35c4", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:14 GMT", + "Date": "Tue, 29 Jun 2021 19:03:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "574cfa76-efc3-4103-8cac-ac36e5c60ca9", - "lastUpdateDateTime": "2021-06-03T18:24:01Z", - "createdDateTime": "2021-06-03T18:24:00Z", - "expirationDateTime": "2021-06-04T18:24:00Z", + "jobId": "ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", + "lastUpdateDateTime": "2021-06-29T19:02:56Z", + "createdDateTime": "2021-06-29T19:02:55Z", + "expirationDateTime": "2021-06-30T19:02:55Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:24:01Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -624,39 +568,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/574cfa76-efc3-4103-8cac-ac36e5c60ca9", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fcc22fc2fb4a11a24178e3806449c348", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4335e5ff-3d42-4459-8ed4-39e66bf2cd67", + "apim-request-id": "782f4f23-71aa-4d7a-8bb0-24c2edde4a80", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:15 GMT", + "Date": "Tue, 29 Jun 2021 19:03: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": "8" }, "ResponseBody": { - "jobId": "574cfa76-efc3-4103-8cac-ac36e5c60ca9", - "lastUpdateDateTime": "2021-06-03T18:24:01Z", - "createdDateTime": "2021-06-03T18:24:00Z", - "expirationDateTime": "2021-06-04T18:24:00Z", + "jobId": "ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", + "lastUpdateDateTime": "2021-06-29T19:02:56Z", + "createdDateTime": "2021-06-29T19:02:55Z", + "expirationDateTime": "2021-06-30T19:02:55Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:24:01Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -665,39 +605,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/574cfa76-efc3-4103-8cac-ac36e5c60ca9", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e7331f0b598e50df085d442617aa14b1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ce439715-9564-4a33-9278-e66e7449f815", + "apim-request-id": "514064ee-95f5-403d-b98c-e3c1ae248333", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:16 GMT", + "Date": "Tue, 29 Jun 2021 19:03:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "574cfa76-efc3-4103-8cac-ac36e5c60ca9", - "lastUpdateDateTime": "2021-06-03T18:24:01Z", - "createdDateTime": "2021-06-03T18:24:00Z", - "expirationDateTime": "2021-06-04T18:24:00Z", + "jobId": "ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", + "lastUpdateDateTime": "2021-06-29T19:02:56Z", + "createdDateTime": "2021-06-29T19:02:55Z", + "expirationDateTime": "2021-06-30T19:02:55Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:24:01Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -706,39 +642,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/574cfa76-efc3-4103-8cac-ac36e5c60ca9", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d0cb0eeb639d1567b9158fc1875a184d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6f3ef4c7-7a10-42ff-8375-6dae7a5f2e22", + "apim-request-id": "fdd21253-ac88-407b-9332-f8885a3e1a85", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:17 GMT", + "Date": "Tue, 29 Jun 2021 19:03:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "574cfa76-efc3-4103-8cac-ac36e5c60ca9", - "lastUpdateDateTime": "2021-06-03T18:24:01Z", - "createdDateTime": "2021-06-03T18:24:00Z", - "expirationDateTime": "2021-06-04T18:24:00Z", + "jobId": "ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", + "lastUpdateDateTime": "2021-06-29T19:02:56Z", + "createdDateTime": "2021-06-29T19:02:55Z", + "expirationDateTime": "2021-06-30T19:02:55Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:24:01Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -747,39 +679,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/574cfa76-efc3-4103-8cac-ac36e5c60ca9", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1cab5322b63d69324f71f4edb67bfa97", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0a6948c0-a752-4ad5-b7a4-6b14bf6157e8", + "apim-request-id": "c4f67cde-48f1-4130-a129-2ca0dd252560", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:18 GMT", + "Date": "Tue, 29 Jun 2021 19:03:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "574cfa76-efc3-4103-8cac-ac36e5c60ca9", - "lastUpdateDateTime": "2021-06-03T18:24:01Z", - "createdDateTime": "2021-06-03T18:24:00Z", - "expirationDateTime": "2021-06-04T18:24:00Z", + "jobId": "ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", + "lastUpdateDateTime": "2021-06-29T19:02:56Z", + "createdDateTime": "2021-06-29T19:02:55Z", + "expirationDateTime": "2021-06-30T19:02:55Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:24:01Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -788,47 +716,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/574cfa76-efc3-4103-8cac-ac36e5c60ca9", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "55953164f37da7aab81e2e79c91dc9ad", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "94bc1e24-a47a-4982-a6e0-5b4cc8ce561a", + "apim-request-id": "3aeaf484-9dfe-4e95-9dd2-ba683989a4c2", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:21 GMT", + "Date": "Tue, 29 Jun 2021 19:03:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "1680" + "x-envoy-upstream-service-time": "56" }, "ResponseBody": { - "jobId": "574cfa76-efc3-4103-8cac-ac36e5c60ca9", - "lastUpdateDateTime": "2021-06-03T18:24:19Z", - "createdDateTime": "2021-06-03T18:24:00Z", - "expirationDateTime": "2021-06-04T18:24:00Z", + "jobId": "ccd1ba70-81a4-4b8d-b0d5-2beb3428b866", + "lastUpdateDateTime": "2021-06-29T19:03:15Z", + "createdDateTime": "2021-06-29T19:02:55Z", + "expirationDateTime": "2021-06-30T19:02:55Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithLanguageTest", "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2021-06-03T18:24:19Z" - }, "completed": 1, "failed": 0, "inProgress": 0, "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:19.16648Z", - "name": "AnalyzeOperationWithLanguageTest", + "lastUpdateDateTime": "2021-06-29T19:03:15.6992688Z", + "taskName": "KeyPhraseExtraction_latest", "state": "succeeded", "results": { "documents": [ 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 c18a93e88ed4..6b2862c5f472 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleActions.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleActions.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "624", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-86bf4c4e61e25946923980257e43edd9-91bb988db675e440-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-33f118eb315f7847b46b11bc16929685-467bb13acff12547-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "da9c404f19269b117394a823858b72a9", "x-ms-return-client-request-id": "true" }, @@ -67,50 +67,46 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "403dc963-b939-497c-9ec2-811b58d77fb6", - "Date": "Thu, 03 Jun 2021 18:23:23 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/40c53acf-30e4-4420-97a1-6eb057600d97", + "apim-request-id": "8439cdc5-0d8b-43cc-8a22-91332e848db6", + "Date": "Tue, 29 Jun 2021 18:55:44 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "267" + "x-envoy-upstream-service-time": "404" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/40c53acf-30e4-4420-97a1-6eb057600d97", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9abcf455d5282fa542e4f94ff79d2572", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d573461b-146e-44d9-9342-3faea1facee8", + "apim-request-id": "64e7ff07-b3dd-465d-b3aa-297033d18280", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:23 GMT", + "Date": "Tue, 29 Jun 2021 18:55: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": "40c53acf-30e4-4420-97a1-6eb057600d97", - "lastUpdateDateTime": "2021-06-03T18:23:24Z", - "createdDateTime": "2021-06-03T18:23:23Z", - "expirationDateTime": "2021-06-04T18:23:23Z", + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:45Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", "status": "notStarted", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:23:24Z" - }, "completed": 0, "failed": 0, "inProgress": 5, @@ -119,47 +115,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/40c53acf-30e4-4420-97a1-6eb057600d97", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "38769894a9ad45aa2d9e6112ab005942", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8ca2fa2b-0ec0-4bfb-9df2-12306cba3a5a", + "apim-request-id": "04ec1123-5a88-4157-9ea4-a7a7fd6ae023", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:24 GMT", + "Date": "Tue, 29 Jun 2021 18:55:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-envoy-upstream-service-time": "86" }, "ResponseBody": { - "jobId": "40c53acf-30e4-4420-97a1-6eb057600d97", - "lastUpdateDateTime": "2021-06-03T18:23:25Z", - "createdDateTime": "2021-06-03T18:23:23Z", - "expirationDateTime": "2021-06-04T18:23:23Z", + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:45Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:23:25Z" - }, "completed": 1, "failed": 0, "inProgress": 4, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:25.0310717Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -229,47 +221,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/40c53acf-30e4-4420-97a1-6eb057600d97", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "95624054e5857ada9b6d97411fc2a4d6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "12c203ea-c483-40ea-ac84-2225d532d967", + "apim-request-id": "3027279e-959e-40bd-af72-8d0e996d000c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:28 GMT", + "Date": "Tue, 29 Jun 2021 18:55:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2584" + "x-envoy-upstream-service-time": "57" }, "ResponseBody": { - "jobId": "40c53acf-30e4-4420-97a1-6eb057600d97", - "lastUpdateDateTime": "2021-06-03T18:23:25Z", - "createdDateTime": "2021-06-03T18:23:23Z", - "expirationDateTime": "2021-06-04T18:23:23Z", + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:45Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:23:25Z" - }, "completed": 1, "failed": 0, "inProgress": 4, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:25.0310717Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -339,47 +327,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/40c53acf-30e4-4420-97a1-6eb057600d97", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ec8e366f3914acfc49776d8a73938342", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bf326b7b-0961-4905-8bfa-09c42a7e777d", + "apim-request-id": "47b22486-eb53-48a1-b7b9-6299c13b3e98", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:29 GMT", + "Date": "Tue, 29 Jun 2021 18:55:47 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": "165" }, "ResponseBody": { - "jobId": "40c53acf-30e4-4420-97a1-6eb057600d97", - "lastUpdateDateTime": "2021-06-03T18:23:27Z", - "createdDateTime": "2021-06-03T18:23:23Z", - "expirationDateTime": "2021-06-04T18:23:23Z", + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:45Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:23:27Z" - }, "completed": 1, "failed": 0, "inProgress": 4, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:25.0310717Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -449,47 +433,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/40c53acf-30e4-4420-97a1-6eb057600d97", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b6fbb78b8f3aaeedbdfc9d401268266b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bf539f7b-fcc3-4bab-b78a-430e9419abb4", + "apim-request-id": "b4da5180-0919-405c-aed2-38fb5692b04f", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:30 GMT", + "Date": "Tue, 29 Jun 2021 18:55:49 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": "50" }, "ResponseBody": { - "jobId": "40c53acf-30e4-4420-97a1-6eb057600d97", - "lastUpdateDateTime": "2021-06-03T18:23:27Z", - "createdDateTime": "2021-06-03T18:23:23Z", - "expirationDateTime": "2021-06-04T18:23:23Z", + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:45Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:23:27Z" - }, "completed": 1, "failed": 0, "inProgress": 4, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:25.0310717Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -559,47 +539,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/40c53acf-30e4-4420-97a1-6eb057600d97", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "75a38bf96c711b2e44b64b0e78500608", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "27efe722-2ea4-4f7c-93f3-3a3f0d18c7b9", + "apim-request-id": "b10c20e8-ab82-4dd2-b7bb-bdea306dee42", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:31 GMT", + "Date": "Tue, 29 Jun 2021 18:55:50 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": "57" }, "ResponseBody": { - "jobId": "40c53acf-30e4-4420-97a1-6eb057600d97", - "lastUpdateDateTime": "2021-06-03T18:23:27Z", - "createdDateTime": "2021-06-03T18:23:23Z", - "expirationDateTime": "2021-06-04T18:23:23Z", + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:45Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:23:27Z" - }, "completed": 1, "failed": 0, "inProgress": 4, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:25.0310717Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -669,47 +645,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/40c53acf-30e4-4420-97a1-6eb057600d97", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "68b655e9eec6df9b48df2f189bbc99e0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a3f11392-ff09-423f-b446-ed7c80b50b0e", + "apim-request-id": "77c91eb5-fe1f-4e1c-a3a8-ad9797d3a2c9", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:32 GMT", + "Date": "Tue, 29 Jun 2021 18:55:51 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": "57" }, "ResponseBody": { - "jobId": "40c53acf-30e4-4420-97a1-6eb057600d97", - "lastUpdateDateTime": "2021-06-03T18:23:32Z", - "createdDateTime": "2021-06-03T18:23:23Z", - "expirationDateTime": "2021-06-04T18:23:23Z", + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:45Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:23:32Z" - }, "completed": 1, "failed": 0, "inProgress": 4, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:25.0310717Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -779,47 +751,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/40c53acf-30e4-4420-97a1-6eb057600d97", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e89101500eef1ed088e0728344df366d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a55b3aa3-9ae9-47b2-b629-1b3835437a41", + "apim-request-id": "efdc1267-4cb6-4608-9929-1c67dd0d9938", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:33 GMT", + "Date": "Tue, 29 Jun 2021 18:55:53 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": "59" }, "ResponseBody": { - "jobId": "40c53acf-30e4-4420-97a1-6eb057600d97", - "lastUpdateDateTime": "2021-06-03T18:23:32Z", - "createdDateTime": "2021-06-03T18:23:23Z", - "expirationDateTime": "2021-06-04T18:23:23Z", + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:45Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:23:32Z" - }, "completed": 1, "failed": 0, "inProgress": 4, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:25.0310717Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -889,47 +857,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/40c53acf-30e4-4420-97a1-6eb057600d97", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bc5695f5beb20ba4efc32c913d157f88", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "30e7bfc2-6aa2-42be-bcc3-1d6fd3d1ad70", + "apim-request-id": "aec1c21b-cef4-4f3d-bf3e-e138f2522a48", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:36 GMT", + "Date": "Tue, 29 Jun 2021 18:55:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2570" + "x-envoy-upstream-service-time": "48" }, "ResponseBody": { - "jobId": "40c53acf-30e4-4420-97a1-6eb057600d97", - "lastUpdateDateTime": "2021-06-03T18:23:32Z", - "createdDateTime": "2021-06-03T18:23:23Z", - "expirationDateTime": "2021-06-04T18:23:23Z", + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:45Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:23:32Z" - }, "completed": 1, "failed": 0, "inProgress": 4, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:25.0310717Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -999,47 +963,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/40c53acf-30e4-4420-97a1-6eb057600d97", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "77bd6a1c1dbfdb188597dfe67c179b68", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "38939206-7a64-4190-a58f-6f646363e88e", + "apim-request-id": "feb11286-8699-4da4-9449-99858e937c52", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:38 GMT", + "Date": "Tue, 29 Jun 2021 18:55:55 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": "55" }, "ResponseBody": { - "jobId": "40c53acf-30e4-4420-97a1-6eb057600d97", - "lastUpdateDateTime": "2021-06-03T18:23:32Z", - "createdDateTime": "2021-06-03T18:23:23Z", - "expirationDateTime": "2021-06-04T18:23:23Z", + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:45Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:23:32Z" - }, "completed": 1, "failed": 0, "inProgress": 4, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:25.0310717Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -1109,47 +1069,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/40c53acf-30e4-4420-97a1-6eb057600d97", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0522c1a9dc65922d5c85f92ce13ee173", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d33ec059-b6e9-4bcf-b328-b0822bde7799", + "apim-request-id": "6c39e2e7-1f73-4efe-8df6-982ea615b793", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:39 GMT", + "Date": "Tue, 29 Jun 2021 18:55:56 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": "51" }, "ResponseBody": { - "jobId": "40c53acf-30e4-4420-97a1-6eb057600d97", - "lastUpdateDateTime": "2021-06-03T18:23:32Z", - "createdDateTime": "2021-06-03T18:23:23Z", - "expirationDateTime": "2021-06-04T18:23:23Z", + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:45Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:23:32Z" - }, "completed": 1, "failed": 0, "inProgress": 4, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:25.0310717Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -1219,47 +1175,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/40c53acf-30e4-4420-97a1-6eb057600d97", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d966e960bf22d7ad7d7b371bdfbe8fd7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2805ec67-740c-4f02-bdfc-28ff8469915c", + "apim-request-id": "1ebba33a-e613-4fa1-86aa-30679cb6b879", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:40 GMT", + "Date": "Tue, 29 Jun 2021 18:55:57 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": "53" }, "ResponseBody": { - "jobId": "40c53acf-30e4-4420-97a1-6eb057600d97", - "lastUpdateDateTime": "2021-06-03T18:23:32Z", - "createdDateTime": "2021-06-03T18:23:23Z", - "expirationDateTime": "2021-06-04T18:23:23Z", + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:45Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:23:32Z" - }, "completed": 1, "failed": 0, "inProgress": 4, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:25.0310717Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -1329,47 +1281,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/40c53acf-30e4-4420-97a1-6eb057600d97", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7be8c42879f240223c2b1a3924ebf946", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2296689a-a825-4bca-9a62-1bbf911cfe5e", + "apim-request-id": "35c9b5f0-7d38-491d-9382-8f0ddd8f0123", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:41 GMT", + "Date": "Tue, 29 Jun 2021 18:55:58 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": "105" }, "ResponseBody": { - "jobId": "40c53acf-30e4-4420-97a1-6eb057600d97", - "lastUpdateDateTime": "2021-06-03T18:23:32Z", - "createdDateTime": "2021-06-03T18:23:23Z", - "expirationDateTime": "2021-06-04T18:23:23Z", + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:58Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:23:32Z" - }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 4, + "inProgress": 3, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:25.0310717Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -1434,52 +1382,103 @@ "modelVersion": "2020-02-01" } } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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.1-preview.5/analyze/jobs/40c53acf-30e4-4420-97a1-6eb057600d97", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "92856cb6c2b0ea46134b88eaa512b29e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "20646860-2e71-4d42-b21e-baafced285dc", + "apim-request-id": "57f44753-2891-40f6-88c1-1beafe3a2aa1", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:42 GMT", + "Date": "Tue, 29 Jun 2021 18:55:59 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": "157" }, "ResponseBody": { - "jobId": "40c53acf-30e4-4420-97a1-6eb057600d97", - "lastUpdateDateTime": "2021-06-03T18:23:32Z", - "createdDateTime": "2021-06-03T18:23:23Z", - "expirationDateTime": "2021-06-04T18:23:23Z", + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:23:32Z" - }, - "completed": 1, + "completed": 3, "failed": 0, - "inProgress": 4, + "inProgress": 2, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:25.0310717Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -1544,52 +1543,135 @@ "modelVersion": "2020-02-01" } } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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-06-29T18:55:59.4149366Z", + "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" + } + } ] } } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/40c53acf-30e4-4420-97a1-6eb057600d97", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1d0421f66556e780c6269cf6a474b291", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "20669482-4bc2-40cd-b875-11ae8f69a716", + "apim-request-id": "c1b4d2fe-2414-4870-9613-f764c014cd78", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:43 GMT", + "Date": "Tue, 29 Jun 2021 18:56:00 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": "153" }, "ResponseBody": { - "jobId": "40c53acf-30e4-4420-97a1-6eb057600d97", - "lastUpdateDateTime": "2021-06-03T18:23:32Z", - "createdDateTime": "2021-06-03T18:23:23Z", - "expirationDateTime": "2021-06-04T18:23:23Z", + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:23:32Z" - }, - "completed": 1, + "completed": 3, "failed": 0, - "inProgress": 4, + "inProgress": 2, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:25.0310717Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -1654,52 +1736,135 @@ "modelVersion": "2020-02-01" } } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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-06-29T18:55:59.4149366Z", + "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" + } + } ] } } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/40c53acf-30e4-4420-97a1-6eb057600d97", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7364f182fc3866277dfd67a7f1389a2a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "17821e49-06ba-44db-86bd-0e242558c4ae", + "apim-request-id": "e49a691b-5a1f-40aa-ab29-01e4d7d085c5", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:44 GMT", + "Date": "Tue, 29 Jun 2021 18:56:01 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": "131" }, "ResponseBody": { - "jobId": "40c53acf-30e4-4420-97a1-6eb057600d97", - "lastUpdateDateTime": "2021-06-03T18:23:32Z", - "createdDateTime": "2021-06-03T18:23:23Z", - "expirationDateTime": "2021-06-04T18:23:23Z", + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:23:32Z" - }, - "completed": 1, + "completed": 3, "failed": 0, - "inProgress": 4, + "inProgress": 2, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:25.0310717Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -1764,114 +1929,91 @@ "modelVersion": "2020-02-01" } } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/40c53acf-30e4-4420-97a1-6eb057600d97", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.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": "b5ea8f38-6eee-4103-b0b6-4dabe3e9b20d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:45 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": "40c53acf-30e4-4420-97a1-6eb057600d97", - "lastUpdateDateTime": "2021-06-03T18:23:32Z", - "createdDateTime": "2021-06-03T18:23:23Z", - "expirationDateTime": "2021-06-04T18:23:23Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:23:32Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 4, - "total": 5, - "entityLinkingTasks": [ + ], + "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:25.0310717Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "taskName": "PersonallyIdentifiableInformation_latest", "state": "succeeded", "results": { "documents": [ { + "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { - "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": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.97 }, { - "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" + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 1.0 }, { - "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": "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": [], + "entities": [ + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.96 + } + ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-02-01" + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:59.4149366Z", + "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" } } ] @@ -1879,47 +2021,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/40c53acf-30e4-4420-97a1-6eb057600d97", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b367f6983fadfa65f99da058fdd9f58d", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "03427c78dbe751f0eb9ecb892550469f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8ebbddf0-9b67-4da1-a1bf-7c73fb316089", + "apim-request-id": "addd95f7-03da-4064-9e24-d1ecade2ef4e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:46 GMT", + "Date": "Tue, 29 Jun 2021 18:56:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "135" }, "ResponseBody": { - "jobId": "40c53acf-30e4-4420-97a1-6eb057600d97", - "lastUpdateDateTime": "2021-06-03T18:23:32Z", - "createdDateTime": "2021-06-03T18:23:23Z", - "expirationDateTime": "2021-06-04T18:23:23Z", + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:23:32Z" - }, - "completed": 1, + "completed": 3, "failed": 0, - "inProgress": 4, + "inProgress": 2, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:25.0310717Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -1984,52 +2122,135 @@ "modelVersion": "2020-02-01" } } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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-06-29T18:55:59.4149366Z", + "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" + } + } ] } } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/40c53acf-30e4-4420-97a1-6eb057600d97", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "287d728caf32a6a900138799319d402d", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b367f6983fadfa65f99da058fdd9f58d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5d373ea9-6774-4e7d-ac18-87f9053ef11c", + "apim-request-id": "25693eb1-4f59-4889-894d-11b4a6a12d2c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:47 GMT", + "Date": "Tue, 29 Jun 2021 18:56:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "65" + "x-envoy-upstream-service-time": "161" }, "ResponseBody": { - "jobId": "40c53acf-30e4-4420-97a1-6eb057600d97", - "lastUpdateDateTime": "2021-06-03T18:23:48Z", - "createdDateTime": "2021-06-03T18:23:23Z", - "expirationDateTime": "2021-06-04T18:23:23Z", + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:23:48Z" - }, - "completed": 2, + "completed": 3, "failed": 0, - "inProgress": 3, + "inProgress": 2, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:25.0310717Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -2095,62 +2316,90 @@ } } ], - "sentimentAnalysisTasks": [ + "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:48.2770188Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "taskName": "PersonallyIdentifiableInformation_latest", "state": "succeeded", "results": { "documents": [ { + "redactedText": "********* was founded by ********** and **********.", "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ + "entities": [ { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, + "text": "Microsoft", + "category": "Organization", "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." + "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", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ + "entities": [ { - "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." + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.96 } ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:59.4149366Z", + "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" } } ] @@ -2158,47 +2407,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/40c53acf-30e4-4420-97a1-6eb057600d97", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "fa0ec8b7e7d1387c164809493b975312", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "287d728caf32a6a900138799319d402d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3169e91a-b388-4935-9450-4249bde7cc14", + "apim-request-id": "622fbcf2-af88-4490-be10-f55da1cb5200", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:48 GMT", + "Date": "Tue, 29 Jun 2021 18:56:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "49" + "x-envoy-upstream-service-time": "136" }, "ResponseBody": { - "jobId": "40c53acf-30e4-4420-97a1-6eb057600d97", - "lastUpdateDateTime": "2021-06-03T18:23:48Z", - "createdDateTime": "2021-06-03T18:23:23Z", - "expirationDateTime": "2021-06-04T18:23:23Z", + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:23:48Z" - }, - "completed": 2, + "completed": 3, "failed": 0, - "inProgress": 3, + "inProgress": 2, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:25.0310717Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -2264,62 +2509,90 @@ } } ], - "sentimentAnalysisTasks": [ + "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:48.2770188Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "taskName": "PersonallyIdentifiableInformation_latest", "state": "succeeded", "results": { "documents": [ { + "redactedText": "********* was founded by ********** and **********.", "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ + "entities": [ { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, + "text": "Microsoft", + "category": "Organization", "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." + "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", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ + "entities": [ { - "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." + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.96 } ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:59.4149366Z", + "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" } } ] @@ -2327,47 +2600,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/40c53acf-30e4-4420-97a1-6eb057600d97", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b3fd3da81dd2e96d4dc1b39ab8cbc95c", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fa0ec8b7e7d1387c164809493b975312", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a4d4b340-a150-4b87-b46f-b8488d8a914f", + "apim-request-id": "9f4678b1-6689-40c8-b4b8-6eb2f9ac2ef8", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:50 GMT", + "Date": "Tue, 29 Jun 2021 18:56:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "50" + "x-envoy-upstream-service-time": "156" }, "ResponseBody": { - "jobId": "40c53acf-30e4-4420-97a1-6eb057600d97", - "lastUpdateDateTime": "2021-06-03T18:23:48Z", - "createdDateTime": "2021-06-03T18:23:23Z", - "expirationDateTime": "2021-06-04T18:23:23Z", + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:23:48Z" - }, - "completed": 2, + "completed": 3, "failed": 0, - "inProgress": 3, + "inProgress": 2, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:25.0310717Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -2433,62 +2702,90 @@ } } ], - "sentimentAnalysisTasks": [ + "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:48.2770188Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "taskName": "PersonallyIdentifiableInformation_latest", "state": "succeeded", "results": { "documents": [ { + "redactedText": "********* was founded by ********** and **********.", "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ + "entities": [ { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, + "text": "Microsoft", + "category": "Organization", "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." + "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", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ + "entities": [ { - "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." + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.96 } ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:59.4149366Z", + "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" } } ] @@ -2496,47 +2793,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/40c53acf-30e4-4420-97a1-6eb057600d97", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "35a1725dfbcaa5bcf54412e9a55f6b69", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b3fd3da81dd2e96d4dc1b39ab8cbc95c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b3d2350f-1b52-4632-91c7-3713b4955e9d", + "apim-request-id": "0d15b62d-e5f9-4472-af66-03ab1d2686b4", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:51 GMT", + "Date": "Tue, 29 Jun 2021 18:56:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "68" + "x-envoy-upstream-service-time": "146" }, "ResponseBody": { - "jobId": "40c53acf-30e4-4420-97a1-6eb057600d97", - "lastUpdateDateTime": "2021-06-03T18:23:51Z", - "createdDateTime": "2021-06-03T18:23:23Z", - "expirationDateTime": "2021-06-04T18:23:23Z", + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:23:51Z" - }, "completed": 3, "failed": 0, "inProgress": 2, "total": 5, - "entityRecognitionTasks": [ + "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:51.4188908Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -2544,30 +2837,5312 @@ "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 - }, - { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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-06-29T18:55:59.4149366Z", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "35a1725dfbcaa5bcf54412e9a55f6b69", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2b5eac47-cabc-4e15-90bd-63fe02a35cd5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:56:09 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": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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-06-29T18:55:59.4149366Z", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f3f174c08c9f995b5b24ad1034e2804a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b622f481-4d9f-474b-ad6d-2d7571bb31f8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:56:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "154" + }, + "ResponseBody": { + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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-06-29T18:55:59.4149366Z", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c8ecad7f1df5ad478058be8d0b8344ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6124268d-97d7-4392-9d1c-257beaf7226a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:56:12 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": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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-06-29T18:55:59.4149366Z", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "43d94955d5dad0bc1707daa64eac7113", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5246eb19-6590-4e06-a691-2f7d0d103246", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:56:13 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": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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-06-29T18:55:59.4149366Z", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f86ac7c4a273a2732d447247cece8ed7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "57aa91f6-d1fc-4d1c-97f0-706f34d5f66b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:56:14 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": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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-06-29T18:55:59.4149366Z", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "eababfe03c08a96ff01bb1ee43a15ed4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8f15b7b7-7257-4dba-ac95-cb41edeec96e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:56:15 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": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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-06-29T18:55:59.4149366Z", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "43c8abe74b18b37ad537169663750248", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "773332b7-6f5a-4a52-ab55-d88b92bb1842", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:56:16 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": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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-06-29T18:55:59.4149366Z", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8ec5027986f2870a57c10757f0855e8b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3fcae353-7b10-476c-aa3c-de66b1068b9b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:56:17 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": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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-06-29T18:55:59.4149366Z", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "235f9ee54a0594bf450614d126d9457b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "829098f1-ba4a-4523-adf3-3e2fd01ea587", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:56:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "152" + }, + "ResponseBody": { + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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-06-29T18:55:59.4149366Z", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "41746818d0db61e1a040ec564422c350", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9204757d-0ac0-496f-b8ec-5ac44cb367e3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:56:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "141" + }, + "ResponseBody": { + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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-06-29T18:55:59.4149366Z", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c4b18ad8df152e43423148ec7138617d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d85caf6e-8c12-41dd-8a64-19b22e51da9b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:56:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "152" + }, + "ResponseBody": { + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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-06-29T18:55:59.4149366Z", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "873e8b7b1d1014b0bcfe82c45e684f23", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3f2d79dd-3afb-47b3-a9af-779ce1e7db61", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:56:22 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": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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-06-29T18:55:59.4149366Z", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9cf9c442812839662545fea988f5ef68", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0567b754-975a-4ae4-ad84-b93018b2bece", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:56:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "161" + }, + "ResponseBody": { + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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-06-29T18:55:59.4149366Z", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b8db6edf3be3ba3fda9c07165d7ed0da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "12fc6fb7-9f77-413b-bd26-5e1a44dec081", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:56:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "140" + }, + "ResponseBody": { + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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-06-29T18:55:59.4149366Z", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ada925e1c53ffa55250561ca1e068cc7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a6e60b1e-f837-401d-8f9e-4cfef7cbdbde", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:56:26 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": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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-06-29T18:55:59.4149366Z", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "efe41a0f978d0740853ec18c794fdca6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d31f37a4-3f25-4bbb-81c6-9df49f5cd03c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:56:27 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": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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-06-29T18:55:59.4149366Z", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "62c82475424b1a2918e093ddd9749bd3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3de1b3a1-9de5-45c1-aab7-26e8b67216fd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:56:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "989" + }, + "ResponseBody": { + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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-06-29T18:55:59.4149366Z", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4307400fe0994a4ce4a2270003c981d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d7de6350-ec24-420c-b0f6-414421e036ea", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:56:31 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": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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-06-29T18:55:59.4149366Z", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fa55bb29293ecd7bf1cad7ac04622d10", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "546fd49d-8823-4f10-b28d-5acc31271a1e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:56:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "188" + }, + "ResponseBody": { + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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-06-29T18:55:59.4149366Z", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "397ceea39847940cd77d7ea91a28174f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "88236f53-d246-4175-8b46-8968ae2504f0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:56:33 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": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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-06-29T18:55:59.4149366Z", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1eb4bc5fa11ee595c43a52cf09a04682", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bce2cc26-257b-470d-9ed3-a14b50e60336", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:56:35 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": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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-06-29T18:55:59.4149366Z", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "155d1675474c908eaec022c1abd2b2c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f32591cc-5104-480d-8af8-04943d997c67", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:56:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "143" + }, + "ResponseBody": { + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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-06-29T18:55:59.4149366Z", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "474c87b20eae01f25896740d463d8b37", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "14ca7b67-e532-4af4-ab25-9979cb52aeeb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:56:37 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": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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-06-29T18:55:59.4149366Z", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0334fb3602cb17032e23705d7ed43af2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ffa4bc46-44f0-4e37-80da-ab9c10a90d53", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:56:38 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": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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-06-29T18:55:59.4149366Z", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "821d8988ff5366d4245bbcb5d2814a71", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "21e6eae0-5a5f-42aa-baa9-9dfbd640510c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:56:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "149" + }, + "ResponseBody": { + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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-06-29T18:55:59.4149366Z", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b08aeb35ae9db0fc8434198a9d948384", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "76dcdb32-b62d-4679-9cc6-ec7d64f3f788", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:56:41 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": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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-06-29T18:55:59.4149366Z", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "bc85825c091f37e327cddf70454d45ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4bd54a48-20cb-4d34-9421-6e3d4995b892", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:56:42 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": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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": 1.0 + "confidenceScore": 0.99 } ], "warnings": [] }, { + "redactedText": "Mi perro y mi gato tienen que ir al ***********.", "id": "2", "entities": [ { @@ -2575,21 +8150,90 @@ "category": "PersonType", "offset": 36, "length": 11, - "confidenceScore": 0.97 + "confidenceScore": 0.96 } ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-06-01" + "modelVersion": "2021-01-15" } } ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:59.4149366Z", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9327ffd98949d9548d6cfd1fe649c88f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8f0cf01b-c602-41ec-aa78-46b927d9b125", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:56:44 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": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:25.0310717Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -2655,62 +8299,90 @@ } } ], - "sentimentAnalysisTasks": [ + "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:48.2770188Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "taskName": "PersonallyIdentifiableInformation_latest", "state": "succeeded", "results": { "documents": [ { + "redactedText": "********* was founded by ********** and **********.", "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ + "entities": [ { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, + "text": "Microsoft", + "category": "Organization", "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." + "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", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ + "entities": [ { - "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." + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.96 } ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:59.4149366Z", + "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" } } ] @@ -2718,100 +8390,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/40c53acf-30e4-4420-97a1-6eb057600d97", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f3f174c08c9f995b5b24ad1034e2804a", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "505837d88dfc2c51075388cfcf8c6a36", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bfb7b6ae-a89f-4d9e-ad8a-e29a31f51958", + "apim-request-id": "247d605a-3b69-4a8f-ab36-9daa62463f46", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:52 GMT", + "Date": "Tue, 29 Jun 2021 18:56:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "71" + "x-envoy-upstream-service-time": "140" }, "ResponseBody": { - "jobId": "40c53acf-30e4-4420-97a1-6eb057600d97", - "lastUpdateDateTime": "2021-06-03T18:23:51Z", - "createdDateTime": "2021-06-03T18:23:23Z", - "expirationDateTime": "2021-06-04T18:23:23Z", + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:23:51Z" - }, "completed": 3, "failed": 0, "inProgress": 2, "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-06-03T18:23:51.4188908Z", - "name": "AnalyzeOperationWithMultipleTasks", - "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-06-03T18:23:25.0310717Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -2877,62 +8492,90 @@ } } ], - "sentimentAnalysisTasks": [ + "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:48.2770188Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "taskName": "PersonallyIdentifiableInformation_latest", "state": "succeeded", "results": { "documents": [ { + "redactedText": "********* was founded by ********** and **********.", "id": "1", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, - "sentences": [ + "entities": [ { - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.01, - "neutral": 0.99, - "negative": 0.0 - }, + "text": "Microsoft", + "category": "Organization", "offset": 0, - "length": 51, - "text": "Microsoft was founded by Bill Gates and Paul Allen." + "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", - "sentiment": "neutral", - "confidenceScores": { - "positive": 0.13, - "neutral": 0.85, - "negative": 0.02 - }, - "sentences": [ + "entities": [ { - "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." + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.96 } ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:59.4149366Z", + "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" } } ] @@ -2940,100 +8583,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/40c53acf-30e4-4420-97a1-6eb057600d97", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c8ecad7f1df5ad478058be8d0b8344ed", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9eb16cefef6cd23a2dab2fb20bc450dd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7b20f71b-f4b9-4e03-884d-87b711516c8e", + "apim-request-id": "a2d864ed-0326-48ac-9575-f99f1a82040d", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:53 GMT", + "Date": "Tue, 29 Jun 2021 18:56:46 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": "170" }, "ResponseBody": { - "jobId": "40c53acf-30e4-4420-97a1-6eb057600d97", - "lastUpdateDateTime": "2021-06-03T18:23:51Z", - "createdDateTime": "2021-06-03T18:23:23Z", - "expirationDateTime": "2021-06-04T18:23:23Z", + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:55:59Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:23:51Z" - }, "completed": 3, "failed": 0, "inProgress": 2, "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-06-03T18:23:51.4188908Z", - "name": "AnalyzeOperationWithMultipleTasks", - "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-06-03T18:23:25.0310717Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -3087,74 +8673,102 @@ } ], "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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": "2020-02-01" + "modelVersion": "2021-01-15" } } ], - "sentimentAnalysisTasks": [ + "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:48.2770188Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:59.4149366Z", + "taskName": "KeyPhraseExtraction_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." - } + "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": [ + "Mi", + "perro", + "gato", + "veterinario" ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2021-06-01" } } ] @@ -3162,100 +8776,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/40c53acf-30e4-4420-97a1-6eb057600d97", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "43d94955d5dad0bc1707daa64eac7113", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0e974f05f4f44bb0adfb8cf601850900", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2af116a7-de0b-4c99-a8fb-5bbe5f077d6f", + "apim-request-id": "0a0f4b2a-7003-4ea2-b800-e79bf8559685", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:54 GMT", + "Date": "Tue, 29 Jun 2021 18:56:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "132" + "x-envoy-upstream-service-time": "220" }, "ResponseBody": { - "jobId": "40c53acf-30e4-4420-97a1-6eb057600d97", - "lastUpdateDateTime": "2021-06-03T18:23:54Z", - "createdDateTime": "2021-06-03T18:23:23Z", - "expirationDateTime": "2021-06-04T18:23:23Z", + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:56:47Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:23:54Z" - }, "completed": 4, "failed": 0, "inProgress": 1, "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-06-03T18:23:51.4188908Z", - "name": "AnalyzeOperationWithMultipleTasks", - "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-06-03T18:23:25.0310717Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -3321,10 +8878,65 @@ } } ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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-06-03T18:23:54.2549358Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:59.4149366Z", + "taskName": "KeyPhraseExtraction_latest", "state": "succeeded", "results": { "documents": [ @@ -3355,8 +8967,8 @@ ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:48.2770188Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:56:47.6147134Z", + "taskName": "SentimentAnalysis_latest", "state": "succeeded", "results": { "documents": [ @@ -3416,100 +9028,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/40c53acf-30e4-4420-97a1-6eb057600d97", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f86ac7c4a273a2732d447247cece8ed7", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "792fc6022997e923fc8522505e9e2142", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4ebd3d52-9e43-4613-a451-a1825a185a41", + "apim-request-id": "558e4266-790f-4239-917d-3aaed1d3c08f", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:56 GMT", + "Date": "Tue, 29 Jun 2021 18:56:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "85" + "x-envoy-upstream-service-time": "180" }, "ResponseBody": { - "jobId": "40c53acf-30e4-4420-97a1-6eb057600d97", - "lastUpdateDateTime": "2021-06-03T18:23:54Z", - "createdDateTime": "2021-06-03T18:23:23Z", - "expirationDateTime": "2021-06-04T18:23:23Z", + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:56:47Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:23:54Z" - }, "completed": 4, "failed": 0, "inProgress": 1, "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-06-03T18:23:51.4188908Z", - "name": "AnalyzeOperationWithMultipleTasks", - "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-06-03T18:23:25.0310717Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -3547,38 +9102,93 @@ "dataSource": "Wikipedia" }, { - "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" + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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": [], + "entities": [ + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.96 + } + ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-02-01" + "modelVersion": "2021-01-15" } } ], "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:54.2549358Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:59.4149366Z", + "taskName": "KeyPhraseExtraction_latest", "state": "succeeded", "results": { "documents": [ @@ -3609,8 +9219,8 @@ ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:48.2770188Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:56:47.6147134Z", + "taskName": "SentimentAnalysis_latest", "state": "succeeded", "results": { "documents": [ @@ -3670,100 +9280,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/40c53acf-30e4-4420-97a1-6eb057600d97", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "eababfe03c08a96ff01bb1ee43a15ed4", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "80caab025cf5fa42bc66f1716344d1a8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2fed39a8-5b28-42ef-a536-88933a3d902f", + "apim-request-id": "d3376028-2598-4b20-bc52-523fe606d4e2", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:57 GMT", + "Date": "Tue, 29 Jun 2021 18:56:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "87" + "x-envoy-upstream-service-time": "206" }, "ResponseBody": { - "jobId": "40c53acf-30e4-4420-97a1-6eb057600d97", - "lastUpdateDateTime": "2021-06-03T18:23:54Z", - "createdDateTime": "2021-06-03T18:23:23Z", - "expirationDateTime": "2021-06-04T18:23:23Z", + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:56:47Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:23:54Z" - }, "completed": 4, "failed": 0, "inProgress": 1, "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-06-03T18:23:51.4188908Z", - "name": "AnalyzeOperationWithMultipleTasks", - "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-06-03T18:23:25.0310717Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -3829,10 +9382,65 @@ } } ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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-06-03T18:23:54.2549358Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:59.4149366Z", + "taskName": "KeyPhraseExtraction_latest", "state": "succeeded", "results": { "documents": [ @@ -3863,8 +9471,8 @@ ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:48.2770188Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:56:47.6147134Z", + "taskName": "SentimentAnalysis_latest", "state": "succeeded", "results": { "documents": [ @@ -3924,100 +9532,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/40c53acf-30e4-4420-97a1-6eb057600d97", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "43c8abe74b18b37ad537169663750248", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "44b02fa2d795db452bae116ed25fed0e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3143abde-bed4-49c8-b618-4e617a35c926", + "apim-request-id": "3c8ba0af-7408-4baf-9398-8adce9c94572", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:23:58 GMT", + "Date": "Tue, 29 Jun 2021 18:56:53 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": "2247" }, "ResponseBody": { - "jobId": "40c53acf-30e4-4420-97a1-6eb057600d97", - "lastUpdateDateTime": "2021-06-03T18:23:54Z", - "createdDateTime": "2021-06-03T18:23:23Z", - "expirationDateTime": "2021-06-04T18:23:23Z", + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:56:47Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:23:54Z" - }, "completed": 4, "failed": 0, "inProgress": 1, "total": 5, - "entityRecognitionTasks": [ - { - "lastUpdateDateTime": "2021-06-03T18:23:51.4188908Z", - "name": "AnalyzeOperationWithMultipleTasks", - "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-06-03T18:23:25.0310717Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -4083,10 +9634,65 @@ } } ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "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-06-03T18:23:54.2549358Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:59.4149366Z", + "taskName": "KeyPhraseExtraction_latest", "state": "succeeded", "results": { "documents": [ @@ -4117,8 +9723,8 @@ ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:48.2770188Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:56:47.6147134Z", + "taskName": "SentimentAnalysis_latest", "state": "succeeded", "results": { "documents": [ @@ -4178,47 +9784,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/40c53acf-30e4-4420-97a1-6eb057600d97", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8ec5027986f2870a57c10757f0855e8b", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "55f449da88bba60a8434bd3138b285b8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3000fb69-dfd7-4976-86fd-71c8d8258642", + "apim-request-id": "34ff6348-2b3d-47cd-a272-d4a77bc70105", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:00 GMT", + "Date": "Tue, 29 Jun 2021 18:56:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "106" + "x-envoy-upstream-service-time": "315" }, "ResponseBody": { - "jobId": "40c53acf-30e4-4420-97a1-6eb057600d97", - "lastUpdateDateTime": "2021-06-03T18:23:59Z", - "createdDateTime": "2021-06-03T18:23:23Z", - "expirationDateTime": "2021-06-04T18:23:23Z", + "jobId": "4e5d0ce9-2c92-4a5d-86b9-bef1283f02fa", + "lastUpdateDateTime": "2021-06-29T18:56:53Z", + "createdDateTime": "2021-06-29T18:55:44Z", + "expirationDateTime": "2021-06-30T18:55:44Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:23:59Z" - }, "completed": 5, "failed": 0, "inProgress": 0, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:51.4188908Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:56:53.9213985Z", + "taskName": "NamedEntityRecognition_latest", "state": "succeeded", "results": { "documents": [ @@ -4270,8 +9872,8 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:25.0310717Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:45.9162659Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -4339,8 +9941,8 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:59.0543635Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:58.3270267Z", + "taskName": "PersonallyIdentifiableInformation_latest", "state": "succeeded", "results": { "documents": [ @@ -4394,8 +9996,8 @@ ], "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:54.2549358Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:55:59.4149366Z", + "taskName": "KeyPhraseExtraction_latest", "state": "succeeded", "results": { "documents": [ @@ -4426,8 +10028,8 @@ ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:23:48.2770188Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T18:56:47.6147134Z", + "taskName": "SentimentAnalysis_latest", "state": "succeeded", "results": { "documents": [ 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 790adfad8dd3..81b5132e03f3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleActionsAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleActionsAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "624", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6b6fcc827f2de0479c05120b9a6f8bdb-5ba7e94332b10945-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-319935be3347a145bac16fe22ee2b143-489d424c83743946-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "89d8b003187a4095bbbb24fbfe84af54", "x-ms-return-client-request-id": "true" }, @@ -67,50 +67,46 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "4aa45ee0-de4e-4d07-807f-655175c3bbc4", - "Date": "Thu, 03 Jun 2021 18:24:22 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "apim-request-id": "c1d52803-85b7-441a-ba37-1b9474daa1b1", + "Date": "Tue, 29 Jun 2021 19:03:16 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "529" + "x-envoy-upstream-service-time": "394" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2855ecc1615ff9546357ae19534c50d8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4dfb5d82-141a-4835-a201-b219206dd380", + "apim-request-id": "7c3ce086-ec2f-4a6a-9aef-414111e15bd1", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:22 GMT", + "Date": "Tue, 29 Jun 2021 19:03:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:22Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", - "status": "notStarted", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:16Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", + "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:22Z" - }, "completed": 0, "failed": 0, "inProgress": 5, @@ -119,47 +115,80 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "49705b3bf552a68f1ed902bccb13384a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "59ccf5a6-2ee2-458c-876f-f0d84d4f2a03", + "apim-request-id": "3212267b-59a5-4761-b363-1a9a9f085071", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:03: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": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:17Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03: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.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b846e7be8ec5a1535bdf25226a7ced6f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1f6c5a8d-456b-43cb-8875-23b6517b65fd", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:23 GMT", + "Date": "Tue, 29 Jun 2021 19:03:18 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": "57" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:23Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:17Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:23Z" - }, "completed": 1, "failed": 0, "inProgress": 4, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -229,47 +258,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b846e7be8ec5a1535bdf25226a7ced6f", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a3bf4c6a6514cb015cae0a855f982e50", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8ffa3515-2463-440d-9432-191a64565243", + "apim-request-id": "da72e945-5547-4d2f-991b-a89d08b8b647", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:24 GMT", + "Date": "Tue, 29 Jun 2021 19:03:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-envoy-upstream-service-time": "62" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:23Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:17Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:23Z" - }, "completed": 1, "failed": 0, "inProgress": 4, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -339,47 +364,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a3bf4c6a6514cb015cae0a855f982e50", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6b5a641f9805ac1307ceee72d06c3ca1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4cf06b5b-bff8-4ad6-938f-b16331106bf8", + "apim-request-id": "3d0bc892-488f-48bb-b4ca-649efc196435", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:25 GMT", + "Date": "Tue, 29 Jun 2021 19:03:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-envoy-upstream-service-time": "98" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:25Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:17Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:25Z" - }, "completed": 1, "failed": 0, "inProgress": 4, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -449,47 +470,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6b5a641f9805ac1307ceee72d06c3ca1", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7e5192ec94535835e57a5b1684cd42c2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "135067fd-45b6-4eb4-831d-6be4d812c891", + "apim-request-id": "5994e758-f2bd-48e5-ad9e-464cc3364838", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:26 GMT", + "Date": "Tue, 29 Jun 2021 19:03:21 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": "65" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:25Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:17Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:25Z" - }, "completed": 1, "failed": 0, "inProgress": 4, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -559,47 +576,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7e5192ec94535835e57a5b1684cd42c2", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0603d5b18121d26939129b46778efbf0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "53baf5b9-bf1f-4010-a5ee-cd0cb669152b", + "apim-request-id": "c5d1c20d-6297-4015-a24b-1f36795f1ecb", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:27 GMT", + "Date": "Tue, 29 Jun 2021 19:03:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "112" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:25Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:23Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:25Z" - }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 4, + "inProgress": 3, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -664,52 +677,107 @@ "modelVersion": "2020-02-01" } } + ], + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "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.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0603d5b18121d26939129b46778efbf0", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cc996972af478afc2e02868b3dfc283a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "169e3ce1-47bc-4c3b-9355-1c656cf1eb3a", + "apim-request-id": "9f488a3a-9ff5-4f4c-89ac-d8e3e236091a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:28 GMT", + "Date": "Tue, 29 Jun 2021 19:03:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "65" + "x-envoy-upstream-service-time": "106" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:25Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:23Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:25Z" - }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 4, + "inProgress": 3, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -774,52 +842,107 @@ "modelVersion": "2020-02-01" } } + ], + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "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.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "cc996972af478afc2e02868b3dfc283a", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fbc12b8b36696a80287e4541f9efe156", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cb7dfdf9-671a-4959-ab80-efdf0b392927", + "apim-request-id": "f1ccab6a-1f2a-46bb-bbc6-f352bff6b2dd", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:29 GMT", + "Date": "Tue, 29 Jun 2021 19:03:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "72" + "x-envoy-upstream-service-time": "95" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:25Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:23Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:25Z" - }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 4, + "inProgress": 3, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -884,52 +1007,107 @@ "modelVersion": "2020-02-01" } } + ], + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "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.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "fbc12b8b36696a80287e4541f9efe156", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1aa46a7f7634017bd878d71ffade953c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "55722803-1bec-4ea1-9135-797e2204f869", + "apim-request-id": "88fa3b2f-561e-4c25-ae77-f0dba43b5948", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:30 GMT", + "Date": "Tue, 29 Jun 2021 19:03:26 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": "195" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:25Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:23Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:25Z" - }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 4, + "inProgress": 3, "total": 5, "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -994,114 +1172,63 @@ "modelVersion": "2020-02-01" } } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.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": "bf49199b-4685-4e17-923d-7351f1a9eafd", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:31 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": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:25Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:25Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 4, - "total": 5, - "entityLinkingTasks": [ + ], + "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "taskName": "SentimentAnalysis_latest", "state": "succeeded", "results": { "documents": [ { "id": "1", - "entities": [ - { - "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" - }, - { - "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" - }, + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.99, + "negative": 0.0 + }, + "sentences": [ { - "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." } ], "warnings": [] }, { "id": "2", - "entities": [], + "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-02-01" + "modelVersion": "2020-04-01" } } ] @@ -1109,47 +1236,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4bba61eaffcd3c86e82ea4c86abb913e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "24091fba-bdbc-4db1-955c-13bf6fd30bd0", + "apim-request-id": "68a0279f-854e-4015-93d3-f08edc729803", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:33 GMT", + "Date": "Tue, 29 Jun 2021 19:03:27 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": "149" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:25Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:27Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:25Z" - }, - "completed": 1, + "completed": 3, "failed": 0, - "inProgress": 4, + "inProgress": 2, "total": 5, - "entityLinkingTasks": [ + "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "taskName": "NamedEntityRecognition_latest", "state": "succeeded", "results": { "documents": [ @@ -1157,109 +1280,52 @@ "id": "1", "entities": [ { - "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": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 1.0 }, { - "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" + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 1.0 }, { - "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": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 1.0 } ], "warnings": [] }, { "id": "2", - "entities": [], + "entities": [ + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.97 + } + ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-02-01" + "modelVersion": "2021-06-01" } } - ] - } - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.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": "0bdf4a86-7db0-4b77-93bc-407c9486689c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:34 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": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:25Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", - "status": "running", - "errors": [], - "displayName": "AnalyzeOperationWithMultipleTasks", - "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:25Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 4, - "total": 5, + ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -1324,52 +1390,160 @@ "modelVersion": "2020-02-01" } } + ], + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "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.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "975708e996357f89e4673105d1b2971d", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d20c30200d581505b0c022f05e616f4a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dcdf459c-75ce-40c9-8597-e022df2d1859", + "apim-request-id": "9bca400c-b0d5-4ab6-bd87-e5171f03a694", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:35 GMT", + "Date": "Tue, 29 Jun 2021 19:03:28 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": "162" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:25Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:27Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:25Z" - }, - "completed": 1, + "completed": 3, "failed": 0, - "inProgress": 4, + "inProgress": 2, "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "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-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -1434,52 +1608,160 @@ "modelVersion": "2020-02-01" } } + ], + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "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.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "cafe98e7c2d2dce45ba49a0cdd95dd87", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "975708e996357f89e4673105d1b2971d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3d2054d7-7be8-4083-9c1a-99931c1383f7", + "apim-request-id": "71f424b2-1550-49ee-a8e4-848a5e06a7f4", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:36 GMT", + "Date": "Tue, 29 Jun 2021 19:03:29 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": "165" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:25Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:27Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:25Z" - }, - "completed": 1, + "completed": 3, "failed": 0, - "inProgress": 4, + "inProgress": 2, "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "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-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -1544,52 +1826,107 @@ "modelVersion": "2020-02-01" } } + ], + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "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.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "62df5abff9648a09a68ceef0db0043fe", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cafe98e7c2d2dce45ba49a0cdd95dd87", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cb3ad99b-a029-4ef2-9ff7-1684e26bba47", + "apim-request-id": "2f569ac2-af39-4e55-9c72-d671acb08397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:37 GMT", + "Date": "Tue, 29 Jun 2021 19:03:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "156" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:25Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:27Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:25Z" - }, - "completed": 1, + "completed": 3, "failed": 0, - "inProgress": 4, + "inProgress": 2, "total": 5, - "entityLinkingTasks": [ + "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "taskName": "NamedEntityRecognition_latest", "state": "succeeded", "results": { "documents": [ @@ -1597,29 +1934,5826 @@ "id": "1", "entities": [ { - "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": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 1.0 }, { - "name": "Paul Allen", - "matches": [ - { - "text": "Paul Allen", - "offset": 40, - "length": 10, - "confidenceScore": 0.54 - } + "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-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "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.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "62df5abff9648a09a68ceef0db0043fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a36662fa-bd4b-4a39-9417-ce741f72f6eb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:03:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "145" + }, + "ResponseBody": { + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:27Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "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-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "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.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c5090529a5622777247a3b90fb7ca24e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "600a7392-0a0e-46fe-bc93-1b6849201fa5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:03:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "161" + }, + "ResponseBody": { + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:27Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "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-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "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.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7746aa8a34d3edb88f732345d4f3005b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "aa81796c-4a2b-44d7-acca-5e684c20afcd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:03:34 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": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:27Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "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-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "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.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d7e39b60188c1a24e2b83de9be788e2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "15711b66-4c31-4f3d-a482-63252d239c95", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:03:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "161" + }, + "ResponseBody": { + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:27Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "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-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "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.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3166a0eaccbaf42b4c1c36ef81325230", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a0a88f41-da24-43f5-83e3-75306e4905d2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:03:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "140" + }, + "ResponseBody": { + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:27Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "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-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "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.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5f30e07aca9872c1852c951bf7cf2f16", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cc658db2-81c2-43fe-81d7-f529223114c9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:03:39 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": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:27Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "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-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "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.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "335af9e4ce8c94a070ef8a6fe13598af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e5236d4e-6336-4abd-b248-7cdeedcae577", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:03:40 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": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:27Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 2, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "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-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "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.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "dd6e0d652e481f92def4ac8e360ffd7d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ff6f57d3-5060-4550-9f82-4a9620316a71", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:03:41 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": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "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-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "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-06-29T19:03:23.2957087Z", + "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.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "870a20ed1ed7aca3409befa84052904f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d6a6fc57-effb-4d99-9469-e198286b9991", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:03:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "350" + }, + "ResponseBody": { + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "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-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "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-06-29T19:03:23.2957087Z", + "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.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "eab6e6935160b6ce673b559821125e60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "825819f1-95b5-46f4-9e12-3689a58921ea", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:03:44 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": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "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-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "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-06-29T19:03:23.2957087Z", + "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.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c1820df2102a46d769c29cac3fe9df8c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cae4fcbb-f954-4200-a541-6f0d46062af2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:03:45 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": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "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-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "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-06-29T19:03:23.2957087Z", + "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.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "50fb5d6412599b1c5154209cc90b8b2e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ca8b9cfc-05c8-4a07-b240-ee4f201685e8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:03:46 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": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "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-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "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-06-29T19:03:23.2957087Z", + "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.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "32b68e3dcfcf82240e6f809eb522767d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bb063639-7c31-467c-887d-cb16443b2de5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:03:48 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": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "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-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "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-06-29T19:03:23.2957087Z", + "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.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c434c95b0d16df06f1e66fd6f03b7c5d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "62b31b49-9717-49c7-b166-81fb8b52ba37", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:03:49 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": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "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-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "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-06-29T19:03:23.2957087Z", + "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.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b16e6e37ac3295bc387842ea927de62f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5537a628-da2e-4ad9-b617-6c4e904a4c68", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:03:50 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": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "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-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "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-06-29T19:03:23.2957087Z", + "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.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0040a3ddc7d7301787d640e95f4e92d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "42d8cb94-ea4f-49c9-b7ed-4479d217693b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:03:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "233" + }, + "ResponseBody": { + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "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-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "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-06-29T19:03:23.2957087Z", + "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.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "466722f3c5b4ae4a0c9f8b9dcb1c4d73", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f04195fc-68af-498a-92fe-d32658de089b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:03:53 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": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "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-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "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-06-29T19:03:23.2957087Z", + "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.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4cf840007cfa7086573d295c6cd335ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b05b5406-db5c-4a00-a856-8c139c7c2df9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:03:54 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": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "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-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "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-06-29T19:03:23.2957087Z", + "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.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6ff76fe69f16187b5891f3373b79656a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a9cfe62b-acb4-4931-b694-1c97bbce6090", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:03:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "203" + }, + "ResponseBody": { + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "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-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "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-06-29T19:03:23.2957087Z", + "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.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1ee8cd89455576d89bf7ef769bee4239", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6d4b78d0-a445-4b8f-9ad6-7169641922f1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:03:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "298" + }, + "ResponseBody": { + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "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-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "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-06-29T19:03:23.2957087Z", + "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.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5bb7a169de25615dc5e0f469884f34dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7c4d4703-5ac3-43a2-8e2e-65f0300d6176", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:03:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "581" + }, + "ResponseBody": { + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "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-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "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-06-29T19:03:23.2957087Z", + "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.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9ed2bed817eaa1949780d31eaf057c69", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "52fb10d3-fe09-4d69-8a40-bd209cb572e3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:04:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "285" + }, + "ResponseBody": { + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "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-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "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-06-29T19:03:23.2957087Z", + "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.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9aceba4e09c2aa456f875975516eee4c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0d77d8d7-f7c6-42b3-bad7-7a4362d5b29d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:04:01 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": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "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-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "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" + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "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-06-29T19:03:23.2957087Z", + "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.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "dd9d11c2a41b524e0c15c4a50b3eb1bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3256d651-b97b-4352-be23-a7b5fcbba6e0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:04:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "199" + }, + "ResponseBody": { + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", + "status": "running", + "errors": [], + "displayName": "AnalyzeOperationWithMultipleTasks", + "tasks": { + "completed": 4, + "failed": 0, + "inProgress": 1, + "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "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-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "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" + }, + { + "name": "Paul Allen", + "matches": [ + { + "text": "Paul Allen", + "offset": 40, + "length": 10, + "confidenceScore": 0.54 + } ], "language": "en", "id": "Paul Allen", @@ -1654,52 +7788,192 @@ "modelVersion": "2020-02-01" } } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "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-06-29T19:03:23.2957087Z", + "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.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c5090529a5622777247a3b90fb7ca24e", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cd1a8a639a81cf1b79272e63bd1f5028", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c48085d5-e26d-43b4-853d-d1e712eb7b93", + "apim-request-id": "d33b8095-330a-459c-ae6e-c0e4ecde86d0", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:38 GMT", + "Date": "Tue, 29 Jun 2021 19:04:03 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": "208" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:25Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:25Z" - }, - "completed": 1, + "completed": 4, "failed": 0, - "inProgress": 4, + "inProgress": 1, "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "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-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -1756,12 +8030,103 @@ }, { "id": "2", - "entities": [], + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-02-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "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-06-29T19:03:23.2957087Z", + "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-02-01" + "modelVersion": "2020-04-01" } } ] @@ -1769,47 +8134,96 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7746aa8a34d3edb88f732345d4f3005b", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9d5c86929f67aa4d6c7b8dac449f9f31", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c1959ece-7664-46bb-8dd6-48dfe0e94fbf", + "apim-request-id": "a5ea71b6-a2c6-4df2-af2c-92fa211fa365", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:39 GMT", + "Date": "Tue, 29 Jun 2021 19:04:05 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": "218" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:25Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:25Z" - }, - "completed": 1, + "completed": 4, "failed": 0, - "inProgress": 4, + "inProgress": 1, "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "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-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -1874,52 +8288,192 @@ "modelVersion": "2020-02-01" } } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "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-06-29T19:03:23.2957087Z", + "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.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d7e39b60188c1a24e2b83de9be788e2a", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c61299d6205428cbf6cd63f375ea95ed", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1cba66ec-813b-4f1b-a7a9-516142253c4c", + "apim-request-id": "1e751a0c-525a-462c-904d-cfa0a3348a41", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:40 GMT", + "Date": "Tue, 29 Jun 2021 19:04:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "48" + "x-envoy-upstream-service-time": "241" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:40Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:40Z" - }, - "completed": 2, + "completed": 4, "failed": 0, - "inProgress": 3, + "inProgress": 1, "total": 5, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "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-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -1987,8 +8541,8 @@ ], "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:40.4738743Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "taskName": "KeyPhraseExtraction_latest", "state": "succeeded", "results": { "documents": [ @@ -2003,17 +8557,76 @@ }, { "id": "2", - "keyPhrases": [ - "Mi", - "perro", - "gato", - "veterinario" + "keyPhrases": [ + "Mi", + "perro", + "gato", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "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": "2021-06-01" + "modelVersion": "2020-04-01" } } ] @@ -2021,47 +8634,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3166a0eaccbaf42b4c1c36ef81325230", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "84139cc513e2c3583c6f61050c6f8bd9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9211f3c4-525e-4038-a0f3-7e5ba07996c3", + "apim-request-id": "8d98481e-0f83-4a13-bb82-eb39c6ee3512", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:41 GMT", + "Date": "Tue, 29 Jun 2021 19:04:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "62" + "x-envoy-upstream-service-time": "222" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:42Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:42Z" - }, - "completed": 3, + "completed": 4, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:42.1384131Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "taskName": "NamedEntityRecognition_latest", "state": "succeeded", "results": { "documents": [ @@ -2113,8 +8722,8 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -2182,8 +8791,8 @@ ], "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:40.4738743Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "taskName": "KeyPhraseExtraction_latest", "state": "succeeded", "results": { "documents": [ @@ -2211,52 +8820,107 @@ "modelVersion": "2021-06-01" } } + ], + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "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.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5f30e07aca9872c1852c951bf7cf2f16", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "238dfd87890d71d3bb33a79a3c593581", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "956494cd-a072-4a7a-be64-2a71c9fe30ff", + "apim-request-id": "1712e955-46fe-45e6-950f-81b393748542", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:42 GMT", + "Date": "Tue, 29 Jun 2021 19:04:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "68" + "x-envoy-upstream-service-time": "219" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:42Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:42Z" - }, - "completed": 3, + "completed": 4, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:42.1384131Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "taskName": "NamedEntityRecognition_latest", "state": "succeeded", "results": { "documents": [ @@ -2308,8 +8972,8 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -2377,8 +9041,8 @@ ], "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:40.4738743Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "taskName": "KeyPhraseExtraction_latest", "state": "succeeded", "results": { "documents": [ @@ -2406,52 +9070,107 @@ "modelVersion": "2021-06-01" } } + ], + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "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.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "335af9e4ce8c94a070ef8a6fe13598af", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a8e6a0e61b8cc24f414e89e5bec61c87", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "13322f0b-c16a-4960-9719-221fa7ca1d08", + "apim-request-id": "f3703a3a-e4de-4bf6-98f9-bfe4a7e98ace", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:43 GMT", + "Date": "Tue, 29 Jun 2021 19:04:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "69" + "x-envoy-upstream-service-time": "224" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:42Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:42Z" - }, - "completed": 3, + "completed": 4, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:42.1384131Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "taskName": "NamedEntityRecognition_latest", "state": "succeeded", "results": { "documents": [ @@ -2503,8 +9222,8 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -2572,8 +9291,8 @@ ], "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:40.4738743Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "taskName": "KeyPhraseExtraction_latest", "state": "succeeded", "results": { "documents": [ @@ -2601,52 +9320,107 @@ "modelVersion": "2021-06-01" } } + ], + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "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.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "dd6e0d652e481f92def4ac8e360ffd7d", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "776c8942715d3be0c8a1c9ae6bbd87e2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f27ef013-588f-42a9-8d97-9455233972c4", + "apim-request-id": "99c6f964-a70a-49c4-8601-cddaaaaab54d", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:44 GMT", + "Date": "Tue, 29 Jun 2021 19:04:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "87" + "x-envoy-upstream-service-time": "225" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:42Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:42Z" - }, - "completed": 3, + "completed": 4, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:42.1384131Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "taskName": "NamedEntityRecognition_latest", "state": "succeeded", "results": { "documents": [ @@ -2698,8 +9472,8 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -2767,8 +9541,8 @@ ], "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:40.4738743Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "taskName": "KeyPhraseExtraction_latest", "state": "succeeded", "results": { "documents": [ @@ -2783,17 +9557,76 @@ }, { "id": "2", - "keyPhrases": [ - "Mi", - "perro", - "gato", - "veterinario" + "keyPhrases": [ + "Mi", + "perro", + "gato", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "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": "2021-06-01" + "modelVersion": "2020-04-01" } } ] @@ -2801,47 +9634,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "870a20ed1ed7aca3409befa84052904f", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6b1ee039e2886c4caecae1be00eeb2f4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "26cbe776-830c-402a-b66f-045a8cb40881", + "apim-request-id": "49449398-b903-4458-8d90-2c64ba890323", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:46 GMT", + "Date": "Tue, 29 Jun 2021 19:04:13 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": "240" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:42Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:42Z" - }, - "completed": 3, + "completed": 4, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:42.1384131Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "taskName": "NamedEntityRecognition_latest", "state": "succeeded", "results": { "documents": [ @@ -2893,8 +9722,8 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -2962,8 +9791,8 @@ ], "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:40.4738743Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "taskName": "KeyPhraseExtraction_latest", "state": "succeeded", "results": { "documents": [ @@ -2991,52 +9820,107 @@ "modelVersion": "2021-06-01" } } + ], + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "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.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "eab6e6935160b6ce673b559821125e60", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b2572017bded7523c0abdfeb52a05783", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fbe335b1-91d2-4ff6-9548-847c611a07a2", + "apim-request-id": "868ee001-f78d-41ed-84ea-b060cf528d08", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:47 GMT", + "Date": "Tue, 29 Jun 2021 19:04:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "164" + "x-envoy-upstream-service-time": "236" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:47Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:47Z" - }, "completed": 4, "failed": 0, "inProgress": 1, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:42.1384131Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "taskName": "NamedEntityRecognition_latest", "state": "succeeded", "results": { "documents": [ @@ -3088,8 +9972,8 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -3155,90 +10039,94 @@ } } ], - "entityRecognitionPiiTasks": [ + "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:47.2562916Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "taskName": "KeyPhraseExtraction_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 - } + "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": [ + "Mi", + "perro", + "gato", + "veterinario" ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], - "keyPhraseExtractionTasks": [ + "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:40.4738743Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "taskName": "SentimentAnalysis_latest", "state": "succeeded", "results": { "documents": [ { "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "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", - "keyPhrases": [ - "Mi", - "perro", - "gato", - "veterinario" + "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": "2021-06-01" + "modelVersion": "2020-04-01" } } ] @@ -3246,47 +10134,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c1820df2102a46d769c29cac3fe9df8c", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "deaba7c6b0a75ffe3cffc9928f213bda", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "06cd4390-8d4c-4792-9b67-a6e8ec3264a9", + "apim-request-id": "5760da92-11f1-4227-b9cf-8afe19c37138", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:49 GMT", + "Date": "Tue, 29 Jun 2021 19:04:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "83" + "x-envoy-upstream-service-time": "218" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:47Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:47Z" - }, "completed": 4, "failed": 0, "inProgress": 1, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:42.1384131Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "taskName": "NamedEntityRecognition_latest", "state": "succeeded", "results": { "documents": [ @@ -3338,8 +10222,8 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -3375,95 +10259,40 @@ "id": "Paul Allen", "url": "https://en.wikipedia.org/wiki/Paul_Allen", "dataSource": "Wikipedia" - }, - { - "name": "Microsoft", - "matches": [ - { - "text": "Microsoft", - "offset": 0, - "length": 9, - "confidenceScore": 0.49 - } - ], - "language": "en", - "id": "Microsoft", - "url": "https://en.wikipedia.org/wiki/Microsoft", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-02-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-06-03T18:24:47.2562916Z", - "name": "AnalyzeOperationWithMultipleTasks", - "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 + }, + { + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" } ], "warnings": [] }, { - "redactedText": "Mi perro y mi gato tienen que ir al ***********.", "id": "2", - "entities": [ - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.96 - } - ], + "entities": [], "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2020-02-01" } } ], "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:40.4738743Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "taskName": "KeyPhraseExtraction_latest", "state": "succeeded", "results": { "documents": [ @@ -3491,52 +10320,107 @@ "modelVersion": "2021-06-01" } } + ], + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "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.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "50fb5d6412599b1c5154209cc90b8b2e", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4b97d4eed4657bf4bca9abdd03611a0d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a0e5d3a0-b117-4c73-9a3d-a293c6564129", + "apim-request-id": "c3db9fa7-03f5-4b51-a913-64267382cb83", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:50 GMT", + "Date": "Tue, 29 Jun 2021 19:04:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "80" + "x-envoy-upstream-service-time": "208" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:47Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:47Z" - }, "completed": 4, "failed": 0, "inProgress": 1, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:42.1384131Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "taskName": "NamedEntityRecognition_latest", "state": "succeeded", "results": { "documents": [ @@ -3588,8 +10472,8 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -3655,90 +10539,94 @@ } } ], - "entityRecognitionPiiTasks": [ + "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:47.2562916Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "taskName": "KeyPhraseExtraction_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 - } + "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": [ + "Mi", + "perro", + "gato", + "veterinario" ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], - "keyPhraseExtractionTasks": [ + "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:40.4738743Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "taskName": "SentimentAnalysis_latest", "state": "succeeded", "results": { "documents": [ { "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "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", - "keyPhrases": [ - "Mi", - "perro", - "gato", - "veterinario" + "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": "2021-06-01" + "modelVersion": "2020-04-01" } } ] @@ -3746,47 +10634,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "32b68e3dcfcf82240e6f809eb522767d", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "58f85d73d442674d21f876eef490e59e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bb590b7f-8c8d-405a-991e-d8e48140d957", + "apim-request-id": "3b2dd8b9-4534-44b7-afcd-510343628ab4", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:51 GMT", + "Date": "Tue, 29 Jun 2021 19:04:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "94" + "x-envoy-upstream-service-time": "208" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:47Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:47Z" - }, "completed": 4, "failed": 0, "inProgress": 1, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:42.1384131Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "taskName": "NamedEntityRecognition_latest", "state": "succeeded", "results": { "documents": [ @@ -3838,8 +10722,8 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -3905,90 +10789,94 @@ } } ], - "entityRecognitionPiiTasks": [ + "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:47.2562916Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "taskName": "KeyPhraseExtraction_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 - } + "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": [ + "Mi", + "perro", + "gato", + "veterinario" ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], - "keyPhraseExtractionTasks": [ + "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:40.4738743Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "taskName": "SentimentAnalysis_latest", "state": "succeeded", "results": { "documents": [ { "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "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", - "keyPhrases": [ - "Mi", - "perro", - "gato", - "veterinario" + "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": "2021-06-01" + "modelVersion": "2020-04-01" } } ] @@ -3996,47 +10884,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c434c95b0d16df06f1e66fd6f03b7c5d", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7dfc056f0b09f11eb22f21fe04215cdb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3add5607-3be0-4cd5-8f6a-14ed25865ecc", + "apim-request-id": "20198ca1-5f66-45c6-a006-432ed1182bf4", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:52 GMT", + "Date": "Tue, 29 Jun 2021 19:04:20 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": "229" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:47Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:47Z" - }, "completed": 4, "failed": 0, "inProgress": 1, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:42.1384131Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "taskName": "NamedEntityRecognition_latest", "state": "succeeded", "results": { "documents": [ @@ -4088,8 +10972,8 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -4155,90 +11039,94 @@ } } ], - "entityRecognitionPiiTasks": [ + "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:47.2562916Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "taskName": "KeyPhraseExtraction_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 - } + "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": [ + "Mi", + "perro", + "gato", + "veterinario" ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], - "keyPhraseExtractionTasks": [ + "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:40.4738743Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "taskName": "SentimentAnalysis_latest", "state": "succeeded", "results": { "documents": [ { "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "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", - "keyPhrases": [ - "Mi", - "perro", - "gato", - "veterinario" + "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": "2021-06-01" + "modelVersion": "2020-04-01" } } ] @@ -4246,47 +11134,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b16e6e37ac3295bc387842ea927de62f", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "311fbbe4e22919978730296d5e06872c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e1b3bdb7-6224-41b3-b933-964f4304ddcb", + "apim-request-id": "b3626a2f-8170-4dd2-ba5d-f1f06057c039", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:53 GMT", + "Date": "Tue, 29 Jun 2021 19:04:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "92" + "x-envoy-upstream-service-time": "200" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:47Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:47Z" - }, "completed": 4, "failed": 0, "inProgress": 1, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:42.1384131Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "taskName": "NamedEntityRecognition_latest", "state": "succeeded", "results": { "documents": [ @@ -4338,8 +11222,8 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -4405,90 +11289,94 @@ } } ], - "entityRecognitionPiiTasks": [ + "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:47.2562916Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "taskName": "KeyPhraseExtraction_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 - } + "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": [ + "Mi", + "perro", + "gato", + "veterinario" ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], - "keyPhraseExtractionTasks": [ + "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:40.4738743Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "taskName": "SentimentAnalysis_latest", "state": "succeeded", "results": { "documents": [ { "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "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", - "keyPhrases": [ - "Mi", - "perro", - "gato", - "veterinario" + "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": "2021-06-01" + "modelVersion": "2020-04-01" } } ] @@ -4496,47 +11384,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0040a3ddc7d7301787d640e95f4e92d2", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fd6e0cc39d6467043f06a613b34f6200", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3cf94cc7-5937-44a4-9a74-950a45f7b14b", + "apim-request-id": "8ca68a5d-a4c5-47ad-b7a7-c34b3397da97", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:55 GMT", + "Date": "Tue, 29 Jun 2021 19:04:22 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": "229" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:47Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:47Z" - }, "completed": 4, "failed": 0, "inProgress": 1, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:42.1384131Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "taskName": "NamedEntityRecognition_latest", "state": "succeeded", "results": { "documents": [ @@ -4588,8 +11472,8 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -4638,82 +11522,27 @@ ], "language": "en", "id": "Microsoft", - "url": "https://en.wikipedia.org/wiki/Microsoft", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-02-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-06-03T18:24:47.2562916Z", - "name": "AnalyzeOperationWithMultipleTasks", - "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 + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" } ], "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 - } - ], + "entities": [], "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2020-02-01" } } ], "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:40.4738743Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "taskName": "KeyPhraseExtraction_latest", "state": "succeeded", "results": { "documents": [ @@ -4741,52 +11570,107 @@ "modelVersion": "2021-06-01" } } + ], + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "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.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "466722f3c5b4ae4a0c9f8b9dcb1c4d73", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "39099a9bb3718c756ee3f6d9e2b093ab", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "45c296c9-a53d-4ce4-9778-a2ca20efec52", + "apim-request-id": "5b9c9655-af40-4552-83ee-bd81f41fbfde", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:56 GMT", + "Date": "Tue, 29 Jun 2021 19:04:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "81" + "x-envoy-upstream-service-time": "225" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:47Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:47Z" - }, "completed": 4, "failed": 0, "inProgress": 1, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:42.1384131Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "taskName": "NamedEntityRecognition_latest", "state": "succeeded", "results": { "documents": [ @@ -4838,8 +11722,8 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -4905,90 +11789,94 @@ } } ], - "entityRecognitionPiiTasks": [ + "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:47.2562916Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "taskName": "KeyPhraseExtraction_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 - } + "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": [ + "Mi", + "perro", + "gato", + "veterinario" ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], - "keyPhraseExtractionTasks": [ + "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:40.4738743Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "taskName": "SentimentAnalysis_latest", "state": "succeeded", "results": { "documents": [ { "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "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", - "keyPhrases": [ - "Mi", - "perro", - "gato", - "veterinario" + "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": "2021-06-01" + "modelVersion": "2020-04-01" } } ] @@ -4996,47 +11884,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4cf840007cfa7086573d295c6cd335ea", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f73af4a85fb24776b6b7f2233c846537", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "50ab0260-563c-4c8d-b173-0c63d5ea9ceb", + "apim-request-id": "24442974-933b-4998-be0f-eece8fba4351", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:57 GMT", + "Date": "Tue, 29 Jun 2021 19:04:25 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": "203" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:47Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:47Z" - }, "completed": 4, "failed": 0, "inProgress": 1, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:42.1384131Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "taskName": "NamedEntityRecognition_latest", "state": "succeeded", "results": { "documents": [ @@ -5088,8 +11972,8 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -5155,90 +12039,94 @@ } } ], - "entityRecognitionPiiTasks": [ + "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:47.2562916Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "taskName": "KeyPhraseExtraction_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 - } + "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": [ + "Mi", + "perro", + "gato", + "veterinario" ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], - "keyPhraseExtractionTasks": [ + "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:40.4738743Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "taskName": "SentimentAnalysis_latest", "state": "succeeded", "results": { "documents": [ { "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "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", - "keyPhrases": [ - "Mi", - "perro", - "gato", - "veterinario" + "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": "2021-06-01" + "modelVersion": "2020-04-01" } } ] @@ -5246,47 +12134,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6ff76fe69f16187b5891f3373b79656a", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c3d128cd4efc0fba97e18f81a62b848f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9f17365e-9530-4c7f-b143-cfe514ad4274", + "apim-request-id": "0f1b311a-5249-4eb8-8ece-aad89b733276", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:58 GMT", + "Date": "Tue, 29 Jun 2021 19:04:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "85" + "x-envoy-upstream-service-time": "269" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:47Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:47Z" - }, "completed": 4, "failed": 0, "inProgress": 1, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:42.1384131Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "taskName": "NamedEntityRecognition_latest", "state": "succeeded", "results": { "documents": [ @@ -5338,8 +12222,8 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -5405,90 +12289,94 @@ } } ], - "entityRecognitionPiiTasks": [ + "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:47.2562916Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "taskName": "KeyPhraseExtraction_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 - } + "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": [ + "Mi", + "perro", + "gato", + "veterinario" ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], - "keyPhraseExtractionTasks": [ + "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:40.4738743Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "taskName": "SentimentAnalysis_latest", "state": "succeeded", "results": { "documents": [ { "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "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", - "keyPhrases": [ - "Mi", - "perro", - "gato", - "veterinario" + "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": "2021-06-01" + "modelVersion": "2020-04-01" } } ] @@ -5496,47 +12384,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1ee8cd89455576d89bf7ef769bee4239", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "be6afa736a153c4d24c182b9c15250ea", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7c61b448-2356-4523-8cb6-69ab77547abc", + "apim-request-id": "624f84c4-5293-4caa-8763-13a6e84ce0fd", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:24:59 GMT", + "Date": "Tue, 29 Jun 2021 19:04:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "81" + "x-envoy-upstream-service-time": "199" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:47Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:47Z" - }, "completed": 4, "failed": 0, "inProgress": 1, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:42.1384131Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "taskName": "NamedEntityRecognition_latest", "state": "succeeded", "results": { "documents": [ @@ -5588,8 +12472,8 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -5655,90 +12539,94 @@ } } ], - "entityRecognitionPiiTasks": [ + "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:47.2562916Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "taskName": "KeyPhraseExtraction_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 - } + "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": [ + "Mi", + "perro", + "gato", + "veterinario" ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], - "keyPhraseExtractionTasks": [ + "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:40.4738743Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "taskName": "SentimentAnalysis_latest", "state": "succeeded", "results": { "documents": [ { "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "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", - "keyPhrases": [ - "Mi", - "perro", - "gato", - "veterinario" + "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": "2021-06-01" + "modelVersion": "2020-04-01" } } ] @@ -5746,47 +12634,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5bb7a169de25615dc5e0f469884f34dd", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ba0bbe7dcfdf5aaf392a5fd1d0f4a18b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d8ebc167-7ed4-44b2-9bf1-fbc71b280315", + "apim-request-id": "4e350764-2df8-4306-aada-4925b809922c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:25:00 GMT", + "Date": "Tue, 29 Jun 2021 19:04:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "125" + "x-envoy-upstream-service-time": "208" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:47Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:47Z" - }, "completed": 4, "failed": 0, "inProgress": 1, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:42.1384131Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "taskName": "NamedEntityRecognition_latest", "state": "succeeded", "results": { "documents": [ @@ -5838,8 +12722,8 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -5889,81 +12773,26 @@ "language": "en", "id": "Microsoft", "url": "https://en.wikipedia.org/wiki/Microsoft", - "dataSource": "Wikipedia" - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-02-01" - } - } - ], - "entityRecognitionPiiTasks": [ - { - "lastUpdateDateTime": "2021-06-03T18:24:47.2562916Z", - "name": "AnalyzeOperationWithMultipleTasks", - "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 + "dataSource": "Wikipedia" } ], "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2020-02-01" } } ], "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:40.4738743Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "taskName": "KeyPhraseExtraction_latest", "state": "succeeded", "results": { "documents": [ @@ -5991,52 +12820,107 @@ "modelVersion": "2021-06-01" } } + ], + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "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.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9ed2bed817eaa1949780d31eaf057c69", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "41af6332a6196222da949f3bcb014d45", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f3f999b9-ff73-4d24-a285-30470246df34", + "apim-request-id": "39d847aa-c618-4a36-b9dc-68ff43525744", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:25:01 GMT", + "Date": "Tue, 29 Jun 2021 19:04:30 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": "188" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:47Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:47Z" - }, "completed": 4, "failed": 0, "inProgress": 1, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:42.1384131Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "taskName": "NamedEntityRecognition_latest", "state": "succeeded", "results": { "documents": [ @@ -6088,8 +12972,8 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -6155,90 +13039,94 @@ } } ], - "entityRecognitionPiiTasks": [ + "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:47.2562916Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "taskName": "KeyPhraseExtraction_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 - } + "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": [ + "Mi", + "perro", + "gato", + "veterinario" ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], - "keyPhraseExtractionTasks": [ + "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:40.4738743Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "taskName": "SentimentAnalysis_latest", "state": "succeeded", "results": { "documents": [ { "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "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", - "keyPhrases": [ - "Mi", - "perro", - "gato", - "veterinario" + "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": "2021-06-01" + "modelVersion": "2020-04-01" } } ] @@ -6246,47 +13134,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9aceba4e09c2aa456f875975516eee4c", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e703a491ca20a4af4b1084ea0a7c6c2f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8429d922-69d3-45e9-8ba9-47e88f79d62f", + "apim-request-id": "4620533c-d26b-47d0-aa7d-4f83c038ffa3", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:25:03 GMT", + "Date": "Tue, 29 Jun 2021 19:04:35 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": "3934" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:24:47Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:03:41Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:24:47Z" - }, "completed": 4, "failed": 0, "inProgress": 1, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:42.1384131Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "taskName": "NamedEntityRecognition_latest", "state": "succeeded", "results": { "documents": [ @@ -6338,8 +13222,8 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -6405,90 +13289,94 @@ } } ], - "entityRecognitionPiiTasks": [ + "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:47.2562916Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "taskName": "KeyPhraseExtraction_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 - } + "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": [ + "Mi", + "perro", + "gato", + "veterinario" ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], - "keyPhraseExtractionTasks": [ + "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:40.4738743Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "taskName": "SentimentAnalysis_latest", "state": "succeeded", "results": { "documents": [ { "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "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", - "keyPhrases": [ - "Mi", - "perro", - "gato", - "veterinario" + "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": "2021-06-01" + "modelVersion": "2020-04-01" } } ] @@ -6496,47 +13384,43 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/18a398a3-a42d-40eb-8364-db725b4e3ec5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "dd9d11c2a41b524e0c15c4a50b3eb1bf", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5e86f7200ea2d6d09ca8df4a2f738e38", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c9ca5278-0109-465f-92a3-a7fd4efe30fd", + "apim-request-id": "190694d2-5e95-4948-8526-177a96033202", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 03 Jun 2021 18:25:04 GMT", + "Date": "Tue, 29 Jun 2021 19:04:36 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": "254" }, "ResponseBody": { - "jobId": "18a398a3-a42d-40eb-8364-db725b4e3ec5", - "lastUpdateDateTime": "2021-06-03T18:25:04Z", - "createdDateTime": "2021-06-03T18:24:22Z", - "expirationDateTime": "2021-06-04T18:24:22Z", + "jobId": "cbe59c06-ef36-4af1-ac2a-cb4a18c21b83", + "lastUpdateDateTime": "2021-06-29T19:04:35Z", + "createdDateTime": "2021-06-29T19:03:16Z", + "expirationDateTime": "2021-06-30T19:03:16Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithMultipleTasks", "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2021-06-03T18:25:04Z" - }, "completed": 5, "failed": 0, "inProgress": 0, "total": 5, "entityRecognitionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:42.1384131Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:27.6138184Z", + "taskName": "NamedEntityRecognition_latest", "state": "succeeded", "results": { "documents": [ @@ -6588,8 +13472,8 @@ ], "entityLinkingTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:23.6115344Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:17.7056546Z", + "taskName": "EntityLinking_latest", "state": "succeeded", "results": { "documents": [ @@ -6657,8 +13541,8 @@ ], "entityRecognitionPiiTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:47.2562916Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:04:35.5065742Z", + "taskName": "PersonallyIdentifiableInformation_latest", "state": "succeeded", "results": { "documents": [ @@ -6712,8 +13596,8 @@ ], "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:24:40.4738743Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:41.0106293Z", + "taskName": "KeyPhraseExtraction_latest", "state": "succeeded", "results": { "documents": [ @@ -6744,8 +13628,8 @@ ], "sentimentAnalysisTasks": [ { - "lastUpdateDateTime": "2021-06-03T18:25:04.0058384Z", - "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-06-29T19:03:23.2957087Z", + "taskName": "SentimentAnalysis_latest", "state": "succeeded", "results": { "documents": [ 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 de6156142b04..7a9fc16a6ade 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithPagination.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithPagination.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "1944", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8e1df2ea475c444aa4a10454f368a396-bb55aca5415bf64a-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-00fcf364ca2c774b9517478747e7fb82-f6f25e74c742ed43-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5a3d6c2348d829c15de122829c1d2254", "x-ms-return-client-request-id": "true" }, @@ -144,50 +144,1823 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "78f93ae0-a0c2-497a-b007-2617dde0fa70", - "Date": "Thu, 27 May 2021 18:05:35 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/9dd9cfd9-ce49-4288-b795-4198b1ea2af5", + "apim-request-id": "af8e22a5-23d4-45fb-872e-2fcd938bed67", + "Date": "Tue, 29 Jun 2021 18:56:56 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "579" + "x-envoy-upstream-service-time": "590" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/9dd9cfd9-ce49-4288-b795-4198b1ea2af5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4d5c3f1f260ea429f32258bc15d3c165", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5725e59d-f243-489d-9049-394b73d79425", + "apim-request-id": "35e22ddc-4ef8-47dc-a746-8b1928d85785", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:05:35 GMT", + "Date": "Tue, 29 Jun 2021 18:56: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:56Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0814b8f9ff4d9a0118a1c7a3b4ca2d52", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "240a7b26-25b4-449f-b3d7-72aed94516d6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:56:58 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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e5bd681a9611fd57429866b6f0041489", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1f868520-0244-4304-95e2-e616bbbce1ac", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:56: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e389bc1f1a0820073dc2346c5e86f029", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3d6e2198-229b-4957-926a-b409aa15f8c4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "aca106f5dc1663546016c5b4984baa13", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "800eb745-8f31-4668-9ea3-b27382bcb6c8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f7833e8d4940ff49619da74f61ea9fbc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6e520302-0449-472d-8daf-a0ea3dab8476", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "eac03ca867624373682682f2555287f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "46f54c3a-9974-4e9c-b7a3-e27f6bb31f03", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "20de2017f802ace8bda24b7834050176", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b7de6c4b-e403-40c8-b9bc-7c1607877a70", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5b0b0877bf8a26b0ca408f1ac657aa0e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c7607f72-04d8-47fe-82f5-f5372424ef74", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4037b5167f0cafba54142dc01cfa0e62", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4c68905a-540a-4140-84c9-a8f7b86fa255", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4c7a0c252b4757676fb855c169cee566", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8444c198-53a5-49f9-9050-1dee858aee91", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7f623cf7c0cef86a4e5b077692f00ad0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "13a0ddf4-4858-4ce6-890d-b04bc84f928c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b9f52c315ddceac74ddfd15329f84685", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "db030e88-8142-4cbd-ba02-23b756aeb35c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "dfc9c72e8f976494a282fdeb23f0c57f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b7d9d4f9-2567-49e9-8e2b-d2b1362ae7d7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3c8f85ad2bd89989757731eeef16ce56", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "508560e3-bc65-462a-963d-827ed69e1af7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cb4782152a27a2389790175a60dbc75d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d8a12b20-fd88-420a-9edd-8498a84526b4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a4a6511a096803ad3d2f6a1f5ea5758c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8cd35237-ce79-4ead-8cb8-990b35b27871", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a1d6a7b3f9a882584ceda547142f3999", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ed1ea0d9-1910-4942-be42-7d6d39200177", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9dd4d3b0296f0ceed4448df7c01844f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "814253e3-3f1a-4cc3-aea6-4218267858aa", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b9a68a1a260520b4f823587b6465ee0e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cc28dec5-7f1d-4701-a7a4-6355a2f158ce", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8a6fd1f5d7d1891cb8c9cc646c60c233", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "eba8ac67-dc20-46ca-95b7-cdf52a9dead7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "892cb3a980888a931fb3a54cd173a86e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "65acfc7b-af41-40df-ad5c-ea4b2c148e8c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ee017e56b9a943206e1c003b594fb397", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "db130120-54a2-4db6-82c6-0af764b5df03", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b1d12460653975863de56a1d32cfb845", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ba4bc7d6-ac71-4e32-99d2-47b80eebbe50", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ed0d5d21d35eef8a92e91b6b805730cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4f12e924-749c-429c-8525-af0ba570a1c2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "adeb0d00f6a1f135f88cb1c44f02109e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8fe5025d-dcfc-40d6-8960-5fc63608915e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fb1aba64c6428c399ae21e4f491af5e6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f529ea78-edd0-48a6-b29e-f83bf0e1da0e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "251d9ab40be32aa4281cf5d222c5a08f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8dbb62be-0462-44bc-99d8-c7a9d3b5c937", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c5077cd9353d3a8dd35f12bed8e6a7dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8227a0e9-9c54-4973-ae8b-87c5b4e0042a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b410ca96eae558ba15efd325d0666ad4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9568e0d6-e569-42f2-b9ba-43a1353da79d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cd758e412f137ea90ce35184f8e55241", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a84a1e17-1921-44d1-95ef-85a098ae2aed", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "573c1775ebb5efaac2aeaf4d6168696d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "87b9c597-5768-4469-9490-bc451304d793", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57:29 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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4a7d3ef4da7066ca2191a70198356030", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e5c04788-697b-4dec-b455-a222e82da811", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b8b0919d122a551fe3860b647f5b1da4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3f2cc4d4-b207-479b-9512-32fc42835fde", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ba8fe47a08689bd14dd5362344a8568c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a2dffc03-2db2-4d00-835e-9c268ad96a9e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d0b07f4eb0b8e2431e2766e9ce65e7c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "84b6cfe6-e7d1-42f5-8e85-6193f58a372f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b4870274a5a695c7c0146b55dcfb113a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3d806b88-9bcb-4257-a212-89f02f6433c4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "00167f304daac9eca0ac9c41a1e7cce8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "34613c19-3551-45cb-95bf-7dffa08efe02", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "41af6feea221a9e6b81b0fa345ee0623", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1ae53346-ef0b-4ebd-a5b1-27b10a70238b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4fb92b15e64f271b16be13f90986f3d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "deba1be5-a2fc-46cc-a1f4-b72647fb31df", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6c668348cf4b8d19986d488f3d4884b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0e44988b-3894-46bd-ba3e-f4c1c1095d03", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "38" + }, + "ResponseBody": { + "jobId": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "762b79a67c2e079953882a638eed9f31", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8cb9321e-f9ba-44d6-9efd-6ac21cf5f880", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c25a37279a8745d7122bb6e19e8ce9cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1c5f6322-620f-411f-8cf1-6b93843c26af", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9052603a7d5accaae95f18c3a5b6ffab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "447030d6-dfbc-4817-9a95-68d9a5eb3895", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "9dd9cfd9-ce49-4288-b795-4198b1ea2af5", - "lastUpdateDateTime": "2021-05-27T18:05:36Z", - "createdDateTime": "2021-05-27T18:05:35Z", - "expirationDateTime": "2021-05-28T18:05:35Z", - "status": "notStarted", + "jobId": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "056716cdc1ed0c2ba1e66302c5b768c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "666a46de-3d07-4117-86d0-7f286a9967f0", + "Connection": "close", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57:43 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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2e295d9e0f9aaad78d8ed8278114a05b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "40356f34-7f77-42ff-8fd7-9549ae89b961", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "88140b2ce32478df3546ee7319a70632", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "769b2c65-62e2-440c-9133-df747eea3cb4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "38" + }, + "ResponseBody": { + "jobId": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "482451f7d18dbd113ebd785fe9038a8d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dd42dda8-0b42-46b9-ae8d-dec110abee42", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "bad60845dfa3baa27db0f853216390e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0937eb51-68e1-48ab-9790-b615bdb121b4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", "tasks": { - "details": { - "name": "AnalyzeOperationWithPagination", - "lastUpdateDateTime": "2021-05-27T18:05:36Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -196,39 +1969,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/9dd9cfd9-ce49-4288-b795-4198b1ea2af5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0814b8f9ff4d9a0118a1c7a3b4ca2d52", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3030a58858ef5bcdf9564a676b808e31", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "968f61b2-c37c-4990-9b2d-5b8c85df38b0", + "apim-request-id": "268bae1f-c1eb-4c0f-ac20-e5b0163bd69c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:05:37 GMT", + "Date": "Tue, 29 Jun 2021 18:57:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "9dd9cfd9-ce49-4288-b795-4198b1ea2af5", - "lastUpdateDateTime": "2021-05-27T18:05:36Z", - "createdDateTime": "2021-05-27T18:05:35Z", - "expirationDateTime": "2021-05-28T18:05:35Z", + "jobId": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", "tasks": { - "details": { - "name": "AnalyzeOperationWithPagination", - "lastUpdateDateTime": "2021-05-27T18:05:36Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -237,39 +2006,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/9dd9cfd9-ce49-4288-b795-4198b1ea2af5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e5bd681a9611fd57429866b6f0041489", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "112d60bc4cd1178fae69cadcd8bd9cdb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c30eb74c-5ce2-4c32-9c49-c77c4c7bd9a5", + "apim-request-id": "a5f35e30-562b-4d7c-a3f4-33c1d2b6dd29", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:05:38 GMT", + "Date": "Tue, 29 Jun 2021 18:57: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": "9dd9cfd9-ce49-4288-b795-4198b1ea2af5", - "lastUpdateDateTime": "2021-05-27T18:05:36Z", - "createdDateTime": "2021-05-27T18:05:35Z", - "expirationDateTime": "2021-05-28T18:05:35Z", + "jobId": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", "tasks": { - "details": { - "name": "AnalyzeOperationWithPagination", - "lastUpdateDateTime": "2021-05-27T18:05:36Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -278,39 +2043,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/9dd9cfd9-ce49-4288-b795-4198b1ea2af5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e389bc1f1a0820073dc2346c5e86f029", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "43d6932c5ad3ed9d3a7ac04c953b4ffc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "51b87739-d421-431e-82db-251106fd7130", + "apim-request-id": "4d453859-e527-4039-85a3-1951dc8130c3", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:05:40 GMT", + "Date": "Tue, 29 Jun 2021 18:57: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": "9dd9cfd9-ce49-4288-b795-4198b1ea2af5", - "lastUpdateDateTime": "2021-05-27T18:05:36Z", - "createdDateTime": "2021-05-27T18:05:35Z", - "expirationDateTime": "2021-05-28T18:05:35Z", + "jobId": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", "tasks": { - "details": { - "name": "AnalyzeOperationWithPagination", - "lastUpdateDateTime": "2021-05-27T18:05:36Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -319,39 +2080,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/9dd9cfd9-ce49-4288-b795-4198b1ea2af5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "aca106f5dc1663546016c5b4984baa13", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c097c6227f353b14161881868df1823b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9acbe3fa-6e6a-4993-8033-f91024b9c7e0", + "apim-request-id": "685f2232-6b20-48cc-94cf-dcce22c35720", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:05:41 GMT", + "Date": "Tue, 29 Jun 2021 18:57: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": "9dd9cfd9-ce49-4288-b795-4198b1ea2af5", - "lastUpdateDateTime": "2021-05-27T18:05:36Z", - "createdDateTime": "2021-05-27T18:05:35Z", - "expirationDateTime": "2021-05-28T18:05:35Z", + "jobId": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", "tasks": { - "details": { - "name": "AnalyzeOperationWithPagination", - "lastUpdateDateTime": "2021-05-27T18:05:36Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -360,39 +2117,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/9dd9cfd9-ce49-4288-b795-4198b1ea2af5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f7833e8d4940ff49619da74f61ea9fbc", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d73a6fba4aa9615ec240d6568b438273", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "52998ccf-45d5-44ea-b540-b05ae1a1d0b5", + "apim-request-id": "7395c341-798c-4f5f-9a10-b98fd6cebdeb", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:05:42 GMT", + "Date": "Tue, 29 Jun 2021 18:57:54 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": "9dd9cfd9-ce49-4288-b795-4198b1ea2af5", - "lastUpdateDateTime": "2021-05-27T18:05:36Z", - "createdDateTime": "2021-05-27T18:05:35Z", - "expirationDateTime": "2021-05-28T18:05:35Z", + "jobId": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", "tasks": { - "details": { - "name": "AnalyzeOperationWithPagination", - "lastUpdateDateTime": "2021-05-27T18:05:36Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -401,39 +2154,72 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/9dd9cfd9-ce49-4288-b795-4198b1ea2af5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "eac03ca867624373682682f2555287f2", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "11bace19db26ada57e9a2dbad9175f49", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "24c9cc71-ab79-42bd-9c8a-34cff7a3ca33", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "269284f77801d7526835fdf5a9bdb0d3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "59eaf6c7-0566-458a-a9bf-8c58839770b0", + "apim-request-id": "338fa0c0-230a-451a-bf1c-4dc58c6edae2", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:05:43 GMT", + "Date": "Tue, 29 Jun 2021 18:57: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": "9dd9cfd9-ce49-4288-b795-4198b1ea2af5", - "lastUpdateDateTime": "2021-05-27T18:05:36Z", - "createdDateTime": "2021-05-27T18:05:35Z", - "expirationDateTime": "2021-05-28T18:05:35Z", + "jobId": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", "tasks": { - "details": { - "name": "AnalyzeOperationWithPagination", - "lastUpdateDateTime": "2021-05-27T18:05:36Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -442,39 +2228,72 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/9dd9cfd9-ce49-4288-b795-4198b1ea2af5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "20de2017f802ace8bda24b7834050176", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "bf6c0e967136de14c98d580e1da388ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "425ded9a-219d-4115-819e-70d90b7040de", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:57: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "065e8de05cb0a1717be3a8f1deaf03c0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "92288636-d778-410d-b282-c4af81b050e8", + "apim-request-id": "33a8aab3-785a-4dbb-8dd5-6e60306ec180", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:05:44 GMT", + "Date": "Tue, 29 Jun 2021 18:57: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": "9dd9cfd9-ce49-4288-b795-4198b1ea2af5", - "lastUpdateDateTime": "2021-05-27T18:05:36Z", - "createdDateTime": "2021-05-27T18:05:35Z", - "expirationDateTime": "2021-05-28T18:05:35Z", + "jobId": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", "tasks": { - "details": { - "name": "AnalyzeOperationWithPagination", - "lastUpdateDateTime": "2021-05-27T18:05:36Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -483,55 +2302,274 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/9dd9cfd9-ce49-4288-b795-4198b1ea2af5", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5b0b0877bf8a26b0ca408f1ac657aa0e", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ca245aeaa0aa86126fb45c741f43b9c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d02007b3-8dea-47df-8f41-decd78119c8d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:58:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1b1552aca95f3a229ccb4353c823ff19", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c8f0c719-3aeb-49e4-89c2-929928295ce8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:58: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c3249789be7f3f007bd896fcfffd8237", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "256ff78f-253f-4007-af8d-26371873017a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:58: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8c44e429e89a416137e92ddf5dbebd4c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c4064115-6eca-45aa-b4a0-e2175410725d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:58: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "87eb42b4f61fee4551d5a08712253a9f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "93f9cc30-033d-40d9-8b9f-edafada8d4a4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:58:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:56:57Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e42a0b4873dfa17f36e38b959021e2bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7a1a5f9a-4018-40cc-9ee6-9d4d59d4f2a9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:58: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": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:58:05Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", + "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.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "bd484a1afb1232189e563bc547d92e11", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ecc10666-efa2-4fd6-a1f3-8c81e37d306c", + "apim-request-id": "9cf6a55f-717d-4191-9fb6-5068b83fbbb9", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:05:45 GMT", + "Date": "Tue, 29 Jun 2021 18:58:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "181" + "x-envoy-upstream-service-time": "211" }, "ResponseBody": { - "jobId": "9dd9cfd9-ce49-4288-b795-4198b1ea2af5", - "lastUpdateDateTime": "2021-05-27T18:05:45Z", - "createdDateTime": "2021-05-27T18:05:35Z", - "expirationDateTime": "2021-05-28T18:05:35Z", + "jobId": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:58:06Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithPagination", "tasks": { - "details": { - "name": "AnalyzeOperationWithPagination", - "lastUpdateDateTime": "2021-05-27T18:05:45Z" - }, "completed": 1, "failed": 0, "inProgress": 0, "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:05:45.149598Z", - "name": "AnalyzeOperationWithPagination", + "lastUpdateDateTime": "2021-06-29T18:58:06.4242992Z", + "taskName": "KeyPhraseExtraction_latest", "state": "succeeded", "results": { "documents": [ { "id": "0", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -539,8 +2577,9 @@ { "id": "1", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -548,8 +2587,9 @@ { "id": "2", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -557,8 +2597,9 @@ { "id": "3", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -566,8 +2607,9 @@ { "id": "4", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -575,8 +2617,9 @@ { "id": "5", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -584,8 +2627,9 @@ { "id": "6", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -593,8 +2637,9 @@ { "id": "7", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -602,8 +2647,9 @@ { "id": "8", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -611,8 +2657,9 @@ { "id": "9", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -620,8 +2667,9 @@ { "id": "10", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -629,8 +2677,9 @@ { "id": "11", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -638,8 +2687,9 @@ { "id": "12", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -647,8 +2697,9 @@ { "id": "13", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -656,8 +2707,9 @@ { "id": "14", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -665,8 +2717,9 @@ { "id": "15", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -674,8 +2727,9 @@ { "id": "16", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -683,8 +2737,9 @@ { "id": "17", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -692,8 +2747,9 @@ { "id": "18", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -701,72 +2757,70 @@ { "id": "19", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2021-06-01" } } ] }, - "@nextLink": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/9dd9cfd9-ce49-4288-b795-4198b1ea2af5?$skip=20\u0026$top=3\u0026showStats=False" + "@nextLink": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad?$skip=20\u0026$top=3\u0026showStats=False" } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/9dd9cfd9-ce49-4288-b795-4198b1ea2af5?$skip=20\u0026$top=3\u0026showStats=False", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad?$skip=20\u0026$top=3\u0026showStats=False", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4037b5167f0cafba54142dc01cfa0e62", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "51978eafd993406dc349503c6baf5e2f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "98367b5f-e3d8-4fdd-afe5-24dca081e643", + "apim-request-id": "2bc4e527-360e-404c-9376-3ac8659eb6b3", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:05:45 GMT", + "Date": "Tue, 29 Jun 2021 18:58:06 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": "108" }, "ResponseBody": { - "jobId": "9dd9cfd9-ce49-4288-b795-4198b1ea2af5", - "lastUpdateDateTime": "2021-05-27T18:05:45Z", - "createdDateTime": "2021-05-27T18:05:35Z", - "expirationDateTime": "2021-05-28T18:05:35Z", + "jobId": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:58:06Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithPagination", "tasks": { - "details": { - "name": "AnalyzeOperationWithPagination", - "lastUpdateDateTime": "2021-05-27T18:05:45Z" - }, "completed": 1, "failed": 0, "inProgress": 0, "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:05:45.149598Z", - "name": "AnalyzeOperationWithPagination", + "lastUpdateDateTime": "2021-06-29T18:58:06.4242992Z", + "taskName": "KeyPhraseExtraction_latest", "state": "succeeded", "results": { "documents": [ { "id": "20", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -774,8 +2828,9 @@ { "id": "21", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -783,15 +2838,16 @@ { "id": "22", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2021-06-01" } } ] @@ -799,55 +2855,52 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/9dd9cfd9-ce49-4288-b795-4198b1ea2af5?$skip=20\u0026$top=3\u0026showStats=False", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/01143c87-78f9-4934-847e-85ec532e90ad?$skip=20\u0026$top=3\u0026showStats=False", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.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.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c86de4f27ddd4d8cf3f8458938b9595c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3eaf458d-9995-4747-ba37-dff1fe77ae78", + "apim-request-id": "9b2c2c54-9763-4749-a185-5c879aa8ca3d", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:05:45 GMT", + "Date": "Tue, 29 Jun 2021 18:58:06 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": "64" }, "ResponseBody": { - "jobId": "9dd9cfd9-ce49-4288-b795-4198b1ea2af5", - "lastUpdateDateTime": "2021-05-27T18:05:45Z", - "createdDateTime": "2021-05-27T18:05:35Z", - "expirationDateTime": "2021-05-28T18:05:35Z", + "jobId": "01143c87-78f9-4934-847e-85ec532e90ad", + "lastUpdateDateTime": "2021-06-29T18:58:06Z", + "createdDateTime": "2021-06-29T18:56:56Z", + "expirationDateTime": "2021-06-30T18:56:56Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithPagination", "tasks": { - "details": { - "name": "AnalyzeOperationWithPagination", - "lastUpdateDateTime": "2021-05-27T18:05:45Z" - }, "completed": 1, "failed": 0, "inProgress": 0, "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:05:45.149598Z", - "name": "AnalyzeOperationWithPagination", + "lastUpdateDateTime": "2021-06-29T18:58:06.4242992Z", + "taskName": "KeyPhraseExtraction_latest", "state": "succeeded", "results": { "documents": [ { "id": "20", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -855,8 +2908,9 @@ { "id": "21", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -864,15 +2918,16 @@ { "id": "22", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2021-06-01" } } ] 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 c0c0cfab0c5e..716823122651 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithPaginationAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithPaginationAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "1944", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-27c18755fedb4244be4a065e81d399eb-d7386d43ac1f7447-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-9858cde89d73bb44a0c3db260a3fd653-69399ef03576e542-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "21ac64e10f1baa75d580bbe74a8c1d32", "x-ms-return-client-request-id": "true" }, @@ -144,50 +144,46 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "63a5ab17-9fa3-496c-8018-e7f11be6f1bc", - "Date": "Thu, 27 May 2021 18:08:55 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/ce537987-0ac8-4808-b62f-d189296fcc62", + "apim-request-id": "0ac912e5-a5be-4688-b0c8-2d3ce50ff3f0", + "Date": "Tue, 29 Jun 2021 19:04:37 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/7464d401-2557-401c-87dc-968f7749441f", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "508" + "x-envoy-upstream-service-time": "647" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/ce537987-0ac8-4808-b62f-d189296fcc62", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/7464d401-2557-401c-87dc-968f7749441f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b6309a59d4cb441b6d3a8ce20237d04a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "494866f1-c28a-43cb-897e-81301bed4455", + "apim-request-id": "8ba1ad7b-3a94-44b3-95e3-f2996feb708b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:08:56 GMT", + "Date": "Tue, 29 Jun 2021 19:04: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": "8" }, "ResponseBody": { - "jobId": "ce537987-0ac8-4808-b62f-d189296fcc62", - "lastUpdateDateTime": "2021-05-27T18:08:56Z", - "createdDateTime": "2021-05-27T18:08:56Z", - "expirationDateTime": "2021-05-28T18:08:56Z", - "status": "running", + "jobId": "7464d401-2557-401c-87dc-968f7749441f", + "lastUpdateDateTime": "2021-06-29T19:04:38Z", + "createdDateTime": "2021-06-29T19:04:37Z", + "expirationDateTime": "2021-06-30T19:04:37Z", + "status": "notStarted", "errors": [], "displayName": "AnalyzeOperationWithPagination", "tasks": { - "details": { - "name": "AnalyzeOperationWithPagination", - "lastUpdateDateTime": "2021-05-27T18:08:56Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -196,39 +192,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/ce537987-0ac8-4808-b62f-d189296fcc62", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/7464d401-2557-401c-87dc-968f7749441f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e3d0a275ac6660be41af3fd3bf957141", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "24da1e07-8a45-4007-860c-ad125639f17a", + "apim-request-id": "a502de63-7ca6-46e8-a73a-90bae4f52c5e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:08:58 GMT", + "Date": "Tue, 29 Jun 2021 19:04:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "ce537987-0ac8-4808-b62f-d189296fcc62", - "lastUpdateDateTime": "2021-05-27T18:08:57Z", - "createdDateTime": "2021-05-27T18:08:56Z", - "expirationDateTime": "2021-05-28T18:08:56Z", + "jobId": "7464d401-2557-401c-87dc-968f7749441f", + "lastUpdateDateTime": "2021-06-29T19:04:39Z", + "createdDateTime": "2021-06-29T19:04:37Z", + "expirationDateTime": "2021-06-30T19:04:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", "tasks": { - "details": { - "name": "AnalyzeOperationWithPagination", - "lastUpdateDateTime": "2021-05-27T18:08:57Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -237,39 +229,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/ce537987-0ac8-4808-b62f-d189296fcc62", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/7464d401-2557-401c-87dc-968f7749441f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2d059a9f02910c864867b4e18393a89d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c23ebd58-dd5b-44ae-8ebf-a54475c63b97", + "apim-request-id": "664a972e-a621-43c1-b309-48621a1393cf", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:08:59 GMT", + "Date": "Tue, 29 Jun 2021 19:04:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "ce537987-0ac8-4808-b62f-d189296fcc62", - "lastUpdateDateTime": "2021-05-27T18:08:57Z", - "createdDateTime": "2021-05-27T18:08:56Z", - "expirationDateTime": "2021-05-28T18:08:56Z", + "jobId": "7464d401-2557-401c-87dc-968f7749441f", + "lastUpdateDateTime": "2021-06-29T19:04:39Z", + "createdDateTime": "2021-06-29T19:04:37Z", + "expirationDateTime": "2021-06-30T19:04:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", "tasks": { - "details": { - "name": "AnalyzeOperationWithPagination", - "lastUpdateDateTime": "2021-05-27T18:08:57Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -278,39 +266,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/ce537987-0ac8-4808-b62f-d189296fcc62", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/7464d401-2557-401c-87dc-968f7749441f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a87271af3abbaccbdbd0751c954884d8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a0be8c58-378f-4637-8232-7f75a5ee637f", + "apim-request-id": "02f0676e-910d-4bcf-a536-c846778c444e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:09:00 GMT", + "Date": "Tue, 29 Jun 2021 19:04:40 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": "6" }, "ResponseBody": { - "jobId": "ce537987-0ac8-4808-b62f-d189296fcc62", - "lastUpdateDateTime": "2021-05-27T18:08:57Z", - "createdDateTime": "2021-05-27T18:08:56Z", - "expirationDateTime": "2021-05-28T18:08:56Z", + "jobId": "7464d401-2557-401c-87dc-968f7749441f", + "lastUpdateDateTime": "2021-06-29T19:04:39Z", + "createdDateTime": "2021-06-29T19:04:37Z", + "expirationDateTime": "2021-06-30T19:04:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", "tasks": { - "details": { - "name": "AnalyzeOperationWithPagination", - "lastUpdateDateTime": "2021-05-27T18:08:57Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -319,39 +303,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/ce537987-0ac8-4808-b62f-d189296fcc62", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/7464d401-2557-401c-87dc-968f7749441f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "68424ac8a23173b91bc49bfef8dddcae", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "739347e1-b017-420c-86eb-4942898aa9df", + "apim-request-id": "e778df0a-c0ec-4713-af17-6e3dd278e61d", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:09:01 GMT", + "Date": "Tue, 29 Jun 2021 19:04: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": "ce537987-0ac8-4808-b62f-d189296fcc62", - "lastUpdateDateTime": "2021-05-27T18:08:57Z", - "createdDateTime": "2021-05-27T18:08:56Z", - "expirationDateTime": "2021-05-28T18:08:56Z", + "jobId": "7464d401-2557-401c-87dc-968f7749441f", + "lastUpdateDateTime": "2021-06-29T19:04:39Z", + "createdDateTime": "2021-06-29T19:04:37Z", + "expirationDateTime": "2021-06-30T19:04:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", "tasks": { - "details": { - "name": "AnalyzeOperationWithPagination", - "lastUpdateDateTime": "2021-05-27T18:08:57Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -360,39 +340,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/ce537987-0ac8-4808-b62f-d189296fcc62", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/7464d401-2557-401c-87dc-968f7749441f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4e23a107c9226585ce5851c08c6a7600", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cdf076fd-83a7-4808-9942-3e9ee0724e4c", + "apim-request-id": "9167e13e-9565-427f-98f2-3dcbaefc21a4", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:09:02 GMT", + "Date": "Tue, 29 Jun 2021 19:04:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "ce537987-0ac8-4808-b62f-d189296fcc62", - "lastUpdateDateTime": "2021-05-27T18:08:57Z", - "createdDateTime": "2021-05-27T18:08:56Z", - "expirationDateTime": "2021-05-28T18:08:56Z", + "jobId": "7464d401-2557-401c-87dc-968f7749441f", + "lastUpdateDateTime": "2021-06-29T19:04:39Z", + "createdDateTime": "2021-06-29T19:04:37Z", + "expirationDateTime": "2021-06-30T19:04:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", "tasks": { - "details": { - "name": "AnalyzeOperationWithPagination", - "lastUpdateDateTime": "2021-05-27T18:08:57Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -401,39 +377,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/ce537987-0ac8-4808-b62f-d189296fcc62", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/7464d401-2557-401c-87dc-968f7749441f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3818dce33f500d6cb8ff8cf79eccb4fe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "620b9d3f-d0a0-4245-a869-22613b8db2a1", + "apim-request-id": "0191aaaf-92a5-47b8-a652-6caa68722dce", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:09:03 GMT", + "Date": "Tue, 29 Jun 2021 19:04:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "ce537987-0ac8-4808-b62f-d189296fcc62", - "lastUpdateDateTime": "2021-05-27T18:08:57Z", - "createdDateTime": "2021-05-27T18:08:56Z", - "expirationDateTime": "2021-05-28T18:08:56Z", + "jobId": "7464d401-2557-401c-87dc-968f7749441f", + "lastUpdateDateTime": "2021-06-29T19:04:39Z", + "createdDateTime": "2021-06-29T19:04:37Z", + "expirationDateTime": "2021-06-30T19:04:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", "tasks": { - "details": { - "name": "AnalyzeOperationWithPagination", - "lastUpdateDateTime": "2021-05-27T18:08:57Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -442,39 +414,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/ce537987-0ac8-4808-b62f-d189296fcc62", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/7464d401-2557-401c-87dc-968f7749441f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f414c7f33524ffb5c4dc9ad850f8e6b0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b4ea85cf-f30d-4680-9817-a3c41ab1e797", + "apim-request-id": "aa4ee034-a79a-4b9e-bec4-2c1e611db685", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:09:04 GMT", + "Date": "Tue, 29 Jun 2021 19:04:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "ce537987-0ac8-4808-b62f-d189296fcc62", - "lastUpdateDateTime": "2021-05-27T18:08:57Z", - "createdDateTime": "2021-05-27T18:08:56Z", - "expirationDateTime": "2021-05-28T18:08:56Z", + "jobId": "7464d401-2557-401c-87dc-968f7749441f", + "lastUpdateDateTime": "2021-06-29T19:04:39Z", + "createdDateTime": "2021-06-29T19:04:37Z", + "expirationDateTime": "2021-06-30T19:04:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", "tasks": { - "details": { - "name": "AnalyzeOperationWithPagination", - "lastUpdateDateTime": "2021-05-27T18:08:57Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -483,39 +451,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/ce537987-0ac8-4808-b62f-d189296fcc62", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/7464d401-2557-401c-87dc-968f7749441f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1b1b9a4da3c4c85d341696233c8dc601", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d7cd3d32-b510-4bfb-93c9-0865cfe4bd74", + "apim-request-id": "89b028f2-d29b-4db6-85b7-871d8c1c582e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:09:05 GMT", + "Date": "Tue, 29 Jun 2021 19:04:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "ce537987-0ac8-4808-b62f-d189296fcc62", - "lastUpdateDateTime": "2021-05-27T18:09:05Z", - "createdDateTime": "2021-05-27T18:08:56Z", - "expirationDateTime": "2021-05-28T18:08:56Z", + "jobId": "7464d401-2557-401c-87dc-968f7749441f", + "lastUpdateDateTime": "2021-06-29T19:04:39Z", + "createdDateTime": "2021-06-29T19:04:37Z", + "expirationDateTime": "2021-06-30T19:04:37Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationWithPagination", "tasks": { - "details": { - "name": "AnalyzeOperationWithPagination", - "lastUpdateDateTime": "2021-05-27T18:09:05Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -524,55 +488,607 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/ce537987-0ac8-4808-b62f-d189296fcc62", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/7464d401-2557-401c-87dc-968f7749441f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c5cc53a48255addc27197474a593bcbf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f8278e85-7df2-4de4-ad97-103eac37f0c1", + "apim-request-id": "f6b64003-3e6e-459b-9512-4a82057a561c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:04: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": "7464d401-2557-401c-87dc-968f7749441f", + "lastUpdateDateTime": "2021-06-29T19:04:39Z", + "createdDateTime": "2021-06-29T19:04:37Z", + "expirationDateTime": "2021-06-30T19:04:37Z", + "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.1/analyze/jobs/7464d401-2557-401c-87dc-968f7749441f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "04aadb1998b14f3a694cbf0d9f91c336", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "641edb70-7d2e-4466-824f-8e8d02e00b1a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:04: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": "7464d401-2557-401c-87dc-968f7749441f", + "lastUpdateDateTime": "2021-06-29T19:04:39Z", + "createdDateTime": "2021-06-29T19:04:37Z", + "expirationDateTime": "2021-06-30T19:04:37Z", + "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.1/analyze/jobs/7464d401-2557-401c-87dc-968f7749441f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fd349816202cca5bbe6df4ab2fe922a0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "96dbe717-b5e1-415e-8e99-1aa572bc8a5f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:04: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": "7464d401-2557-401c-87dc-968f7749441f", + "lastUpdateDateTime": "2021-06-29T19:04:39Z", + "createdDateTime": "2021-06-29T19:04:37Z", + "expirationDateTime": "2021-06-30T19:04:37Z", + "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.1/analyze/jobs/7464d401-2557-401c-87dc-968f7749441f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "600ad659c2e30b50187c5c09c2ce0d95", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "60fdf2e1-6d36-462f-940c-1079513a2012", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:04:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "7464d401-2557-401c-87dc-968f7749441f", + "lastUpdateDateTime": "2021-06-29T19:04:39Z", + "createdDateTime": "2021-06-29T19:04:37Z", + "expirationDateTime": "2021-06-30T19:04:37Z", + "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.1/analyze/jobs/7464d401-2557-401c-87dc-968f7749441f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0c5d3d56bf5ff89380df4543a48f1f80", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2784556b-4e3a-4054-bc88-da2e51a960b4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:04: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": "7464d401-2557-401c-87dc-968f7749441f", + "lastUpdateDateTime": "2021-06-29T19:04:39Z", + "createdDateTime": "2021-06-29T19:04:37Z", + "expirationDateTime": "2021-06-30T19:04:37Z", + "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.1/analyze/jobs/7464d401-2557-401c-87dc-968f7749441f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c8b31e29628753534728e4afc45107ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fa1e175d-efb7-426a-adba-6a300d16c556", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:04: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": "7464d401-2557-401c-87dc-968f7749441f", + "lastUpdateDateTime": "2021-06-29T19:04:39Z", + "createdDateTime": "2021-06-29T19:04:37Z", + "expirationDateTime": "2021-06-30T19:04:37Z", + "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.1/analyze/jobs/7464d401-2557-401c-87dc-968f7749441f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f2555e5f158b9a404311e0037c0d6788", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e1493ded-a3ac-4700-b597-18f0537ec434", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:04: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": "7464d401-2557-401c-87dc-968f7749441f", + "lastUpdateDateTime": "2021-06-29T19:04:39Z", + "createdDateTime": "2021-06-29T19:04:37Z", + "expirationDateTime": "2021-06-30T19:04:37Z", + "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.1/analyze/jobs/7464d401-2557-401c-87dc-968f7749441f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a4dfdc5c451af30ee90ac537dae4342f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0c0cbfce-3680-4eca-861e-6965167289f7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:04:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "561" + }, + "ResponseBody": { + "jobId": "7464d401-2557-401c-87dc-968f7749441f", + "lastUpdateDateTime": "2021-06-29T19:04:39Z", + "createdDateTime": "2021-06-29T19:04:37Z", + "expirationDateTime": "2021-06-30T19:04:37Z", + "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.1/analyze/jobs/7464d401-2557-401c-87dc-968f7749441f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "45e355d82d3a13f4dd1985758250d63a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "014518be-2331-489f-8971-965bb8492f82", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:04:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "7464d401-2557-401c-87dc-968f7749441f", + "lastUpdateDateTime": "2021-06-29T19:04:39Z", + "createdDateTime": "2021-06-29T19:04:37Z", + "expirationDateTime": "2021-06-30T19:04:37Z", + "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.1/analyze/jobs/7464d401-2557-401c-87dc-968f7749441f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e8525cc063721ad5506108815009bf5f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bf5b46fe-a241-4791-9c88-56b67ade77e0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:04: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": "7464d401-2557-401c-87dc-968f7749441f", + "lastUpdateDateTime": "2021-06-29T19:04:39Z", + "createdDateTime": "2021-06-29T19:04:37Z", + "expirationDateTime": "2021-06-30T19:04:37Z", + "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.1/analyze/jobs/7464d401-2557-401c-87dc-968f7749441f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "272bb0dd22292f4ee7cbc601c0997199", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2b2bb70e-3e85-4671-86d2-869882e8a445", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:09:06 GMT", + "Date": "Tue, 29 Jun 2021 19:04:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "210" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { - "jobId": "ce537987-0ac8-4808-b62f-d189296fcc62", - "lastUpdateDateTime": "2021-05-27T18:09:06Z", - "createdDateTime": "2021-05-27T18:08:56Z", - "expirationDateTime": "2021-05-28T18:08:56Z", + "jobId": "7464d401-2557-401c-87dc-968f7749441f", + "lastUpdateDateTime": "2021-06-29T19:04:39Z", + "createdDateTime": "2021-06-29T19:04:37Z", + "expirationDateTime": "2021-06-30T19:04:37Z", + "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.1/analyze/jobs/7464d401-2557-401c-87dc-968f7749441f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7e768a334c9174bc80c9f5d82473c3d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c2515d21-2d4b-4863-8c6b-e8f6ef5baa5d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "7464d401-2557-401c-87dc-968f7749441f", + "lastUpdateDateTime": "2021-06-29T19:04:39Z", + "createdDateTime": "2021-06-29T19:04:37Z", + "expirationDateTime": "2021-06-30T19:04:37Z", + "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.1/analyze/jobs/7464d401-2557-401c-87dc-968f7749441f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d1982559af249e110d2200a69dd35ab7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6345b20a-b84e-4c7d-8044-8f91477f9738", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "7464d401-2557-401c-87dc-968f7749441f", + "lastUpdateDateTime": "2021-06-29T19:04:39Z", + "createdDateTime": "2021-06-29T19:04:37Z", + "expirationDateTime": "2021-06-30T19:04:37Z", + "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.1/analyze/jobs/7464d401-2557-401c-87dc-968f7749441f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c64d6ff0419290cdf4b6a65f2c750a73", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "155b0885-0b83-4af6-8677-c7cb3daca529", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "7464d401-2557-401c-87dc-968f7749441f", + "lastUpdateDateTime": "2021-06-29T19:05:02Z", + "createdDateTime": "2021-06-29T19:04:37Z", + "expirationDateTime": "2021-06-30T19:04:37Z", + "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.1/analyze/jobs/7464d401-2557-401c-87dc-968f7749441f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9aa7f1089f00847479d7716e4b16d7ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b125ad41-efbe-4d56-beb6-27144d4c1319", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "7464d401-2557-401c-87dc-968f7749441f", + "lastUpdateDateTime": "2021-06-29T19:05:02Z", + "createdDateTime": "2021-06-29T19:04:37Z", + "expirationDateTime": "2021-06-30T19:04:37Z", + "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.1/analyze/jobs/7464d401-2557-401c-87dc-968f7749441f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b5e83e6ffd2618415707dd6e08b17197", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7dc32653-53ea-449b-ac67-9ad864caf14f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05:04 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": "7464d401-2557-401c-87dc-968f7749441f", + "lastUpdateDateTime": "2021-06-29T19:05:04Z", + "createdDateTime": "2021-06-29T19:04:37Z", + "expirationDateTime": "2021-06-30T19:04:37Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithPagination", "tasks": { - "details": { - "name": "AnalyzeOperationWithPagination", - "lastUpdateDateTime": "2021-05-27T18:09:06Z" - }, "completed": 1, "failed": 0, "inProgress": 0, "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:09:06.154639Z", - "name": "AnalyzeOperationWithPagination", + "lastUpdateDateTime": "2021-06-29T19:05:04.2920287Z", + "taskName": "KeyPhraseExtraction_latest", "state": "succeeded", "results": { "documents": [ { "id": "0", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -580,8 +1096,9 @@ { "id": "1", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -589,8 +1106,9 @@ { "id": "2", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -598,8 +1116,9 @@ { "id": "3", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -607,8 +1126,9 @@ { "id": "4", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -616,8 +1136,9 @@ { "id": "5", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -625,8 +1146,9 @@ { "id": "6", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -634,8 +1156,9 @@ { "id": "7", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -643,8 +1166,9 @@ { "id": "8", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -652,8 +1176,9 @@ { "id": "9", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -661,8 +1186,9 @@ { "id": "10", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -670,8 +1196,9 @@ { "id": "11", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -679,8 +1206,9 @@ { "id": "12", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -688,8 +1216,9 @@ { "id": "13", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -697,8 +1226,9 @@ { "id": "14", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -706,8 +1236,9 @@ { "id": "15", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -715,8 +1246,9 @@ { "id": "16", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -724,8 +1256,9 @@ { "id": "17", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -733,8 +1266,9 @@ { "id": "18", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -742,72 +1276,70 @@ { "id": "19", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2021-06-01" } } ] }, - "@nextLink": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/ce537987-0ac8-4808-b62f-d189296fcc62?$skip=20\u0026$top=3\u0026showStats=False" + "@nextLink": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/7464d401-2557-401c-87dc-968f7749441f?$skip=20\u0026$top=3\u0026showStats=False" } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/ce537987-0ac8-4808-b62f-d189296fcc62?$skip=20\u0026$top=3\u0026showStats=False", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/7464d401-2557-401c-87dc-968f7749441f?$skip=20\u0026$top=3\u0026showStats=False", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "04aadb1998b14f3a694cbf0d9f91c336", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ab9d8d17bf2c50b6fac94cbacf5e45dd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b3fb57d2-e92d-4fc5-a62e-85f7782ec269", + "apim-request-id": "5ec12932-408a-4761-aa53-c38916923acc", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:09:06 GMT", + "Date": "Tue, 29 Jun 2021 19:05:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "48" + "x-envoy-upstream-service-time": "91" }, "ResponseBody": { - "jobId": "ce537987-0ac8-4808-b62f-d189296fcc62", - "lastUpdateDateTime": "2021-05-27T18:09:06Z", - "createdDateTime": "2021-05-27T18:08:56Z", - "expirationDateTime": "2021-05-28T18:08:56Z", + "jobId": "7464d401-2557-401c-87dc-968f7749441f", + "lastUpdateDateTime": "2021-06-29T19:05:04Z", + "createdDateTime": "2021-06-29T19:04:37Z", + "expirationDateTime": "2021-06-30T19:04:37Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithPagination", "tasks": { - "details": { - "name": "AnalyzeOperationWithPagination", - "lastUpdateDateTime": "2021-05-27T18:09:06Z" - }, "completed": 1, "failed": 0, "inProgress": 0, "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:09:06.154639Z", - "name": "AnalyzeOperationWithPagination", + "lastUpdateDateTime": "2021-06-29T19:05:04.2920287Z", + "taskName": "KeyPhraseExtraction_latest", "state": "succeeded", "results": { "documents": [ { "id": "20", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -815,8 +1347,9 @@ { "id": "21", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -824,15 +1357,16 @@ { "id": "22", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2021-06-01" } } ] @@ -840,55 +1374,52 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/ce537987-0ac8-4808-b62f-d189296fcc62?$skip=20\u0026$top=3\u0026showStats=False", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/7464d401-2557-401c-87dc-968f7749441f?$skip=20\u0026$top=3\u0026showStats=False", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210527.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "fd349816202cca5bbe6df4ab2fe922a0", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "eef0fadf558d0b4db08e43f9c2067bc7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3687997c-6ae1-45ed-8891-0afca5c53297", + "apim-request-id": "14a21547-a1de-43f1-9785-c03247a6b60c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 27 May 2021 18:09:06 GMT", + "Date": "Tue, 29 Jun 2021 19:05:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "59" + "x-envoy-upstream-service-time": "113" }, "ResponseBody": { - "jobId": "ce537987-0ac8-4808-b62f-d189296fcc62", - "lastUpdateDateTime": "2021-05-27T18:09:06Z", - "createdDateTime": "2021-05-27T18:08:56Z", - "expirationDateTime": "2021-05-28T18:08:56Z", + "jobId": "7464d401-2557-401c-87dc-968f7749441f", + "lastUpdateDateTime": "2021-06-29T19:05:04Z", + "createdDateTime": "2021-06-29T19:04:37Z", + "expirationDateTime": "2021-06-30T19:04:37Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationWithPagination", "tasks": { - "details": { - "name": "AnalyzeOperationWithPagination", - "lastUpdateDateTime": "2021-05-27T18:09:06Z" - }, "completed": 1, "failed": 0, "inProgress": 0, "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-05-27T18:09:06.154639Z", - "name": "AnalyzeOperationWithPagination", + "lastUpdateDateTime": "2021-06-29T19:05:04.2920287Z", + "taskName": "KeyPhraseExtraction_latest", "state": "succeeded", "results": { "documents": [ { "id": "20", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -896,8 +1427,9 @@ { "id": "21", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] @@ -905,15 +1437,16 @@ { "id": "22", "keyPhrases": [ - "CEO of SpaceX", "Elon Musk", + "CEO", + "SpaceX", "Tesla" ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2021-06-01" } } ] diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithPiiCategories.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithPiiCategories.json new file mode 100644 index 000000000000..ccd41a4990bd --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithPiiCategories.json @@ -0,0 +1,380 @@ +{ + "Entries": [ + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "328", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-363eb285b7228c488a2472b83470ae11-222f81d2281af642-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1945c414c8d0214218f422447fc26906", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "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" + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "piiCategories": [ + "USSocialSecurityNumber" + ], + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "30abb492-874c-40e6-9764-8c7dd50cbaa4", + "Date": "Tue, 29 Jun 2021 18:58:06 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/7dc207be-fb23-4bf7-8262-2a34baf8c123", + "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://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/7dc207be-fb23-4bf7-8262-2a34baf8c123", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d5ed9f7c29b99e5a59c9017ada6e4b30", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f4bc1c2a-073a-4e26-91fe-ebba4358f7b4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:58:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "7dc207be-fb23-4bf7-8262-2a34baf8c123", + "lastUpdateDateTime": "2021-06-29T18:58:07Z", + "createdDateTime": "2021-06-29T18:58:07Z", + "expirationDateTime": "2021-06-30T18:58:07Z", + "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.1/analyze/jobs/7dc207be-fb23-4bf7-8262-2a34baf8c123", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0deca93c3e3c1d92798cfe90bfcfa237", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e82da0b4-1314-4248-a035-1e7c849005ab", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:58: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": "7dc207be-fb23-4bf7-8262-2a34baf8c123", + "lastUpdateDateTime": "2021-06-29T18:58:07Z", + "createdDateTime": "2021-06-29T18:58:07Z", + "expirationDateTime": "2021-06-30T18:58:07Z", + "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.1/analyze/jobs/7dc207be-fb23-4bf7-8262-2a34baf8c123", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "dec0a3dfed6cea0b69a7bf06c7c746aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6ba85bfe-3600-473a-b6c8-15d7db5d0cd4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:58: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": "7dc207be-fb23-4bf7-8262-2a34baf8c123", + "lastUpdateDateTime": "2021-06-29T18:58:08Z", + "createdDateTime": "2021-06-29T18:58:07Z", + "expirationDateTime": "2021-06-30T18:58:07Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/7dc207be-fb23-4bf7-8262-2a34baf8c123", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d507f2a85bd63ec90cd05c2d2ac9de8a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d0ca6ac8-9e2e-4c17-abc8-1f175b7993cb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:58: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": "7dc207be-fb23-4bf7-8262-2a34baf8c123", + "lastUpdateDateTime": "2021-06-29T18:58:08Z", + "createdDateTime": "2021-06-29T18:58:07Z", + "expirationDateTime": "2021-06-30T18:58:07Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/7dc207be-fb23-4bf7-8262-2a34baf8c123", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "369bc9276dad4ec49d01a4947e8c55b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9b1c4113-bbaa-438c-86c9-14d937f6311d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:58:11 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": "7dc207be-fb23-4bf7-8262-2a34baf8c123", + "lastUpdateDateTime": "2021-06-29T18:58:08Z", + "createdDateTime": "2021-06-29T18:58:07Z", + "expirationDateTime": "2021-06-30T18:58:07Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/7dc207be-fb23-4bf7-8262-2a34baf8c123", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cde85445ccc78460d982d19b91debf9f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "22cd2335-f4e2-41b2-b173-d4679215e524", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:58: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": "7dc207be-fb23-4bf7-8262-2a34baf8c123", + "lastUpdateDateTime": "2021-06-29T18:58:08Z", + "createdDateTime": "2021-06-29T18:58:07Z", + "expirationDateTime": "2021-06-30T18:58:07Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/7dc207be-fb23-4bf7-8262-2a34baf8c123", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fddf35c9102b3bfc2eb937d5b734bf80", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dbbe7414-6401-4d25-aab5-13f238a3a889", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:58:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "49" + }, + "ResponseBody": { + "jobId": "7dc207be-fb23-4bf7-8262-2a34baf8c123", + "lastUpdateDateTime": "2021-06-29T18:58:08Z", + "createdDateTime": "2021-06-29T18:58:07Z", + "expirationDateTime": "2021-06-30T18:58:07Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/7dc207be-fb23-4bf7-8262-2a34baf8c123", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d6e7aa7b11e15ac269175c2a9b28bcbf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e2451c05-ed7c-49a3-8282-e5db5b6b8a7d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:58: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": "7dc207be-fb23-4bf7-8262-2a34baf8c123", + "lastUpdateDateTime": "2021-06-29T18:58:14Z", + "createdDateTime": "2021-06-29T18:58:07Z", + "expirationDateTime": "2021-06-30T18:58:07Z", + "status": "succeeded", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T18:58:14.9206857Z", + "taskName": "PersonallyIdentifiableInformation_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "A developer with SSN *********** whose phone number is 800-102-1100 is building tools with our APIs. They work at Microsoft.", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 21, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1156890369", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.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 new file mode 100644 index 000000000000..3db6b87cfb27 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithPiiCategoriesAsync.json @@ -0,0 +1,2415 @@ +{ + "Entries": [ + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "328", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-b08b2fdb5f21f44180b7326f256582e4-c49b3e6f64c4fb4d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "32c323d944ebc101cfef406c61f44cba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "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" + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "piiCategories": [ + "USSocialSecurityNumber" + ], + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "c78cae8a-66e2-4b92-9e9a-3f738c7e1244", + "Date": "Tue, 29 Jun 2021 19:05:05 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "160" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5b7957cdb9c168af0199370dfb7f5028", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "41812f4e-653f-4d06-a39f-6468f07fd314", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19: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" + }, + "ResponseBody": { + "jobId": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "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.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4004f81507632899cee58f8d15635040", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5967dd45-ccc9-446e-b742-af7557a6bfc3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "46900fccd3641ff8735a31510df3c64f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "90224184-e735-4e23-ab77-44702de405cf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6957179f0bf0c557bd518ddc2a22539e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dd595d58-00c7-4842-b1c2-e438be6abc05", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "eb41f74809ef41c3ffe4cc09d6481bda", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "302d2e74-79ce-420e-86fe-8843b4665203", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fded3f1fe70cc04fb7ca8813451cf451", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "74874f56-8f5a-45df-ac00-bb431c26ac24", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "15099306dab296605415690b3f4eee75", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2f2a3732-2444-494c-9bb6-d86c4a9ed1f9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19: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" + }, + "ResponseBody": { + "jobId": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ebbdb33556346092a781332480b0fce3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5cd4cbe3-33c9-4239-bfb9-7e23808183fd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "43027bf0053e4427df56a9f67e448169", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "64fba62e-7a10-4ad2-addf-1b2eda104ebb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "92dd13dc095eb01c01a86e31a73b15a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d39491b2-7806-4ddd-8379-03d06820c8b2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c31b8519ab4c30368b780bdead9be263", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "62163b4b-6a15-4f84-86e1-2079d3708b94", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6d48ca0069d3e6855e52429696f69da3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "89493095-fa72-4d53-9df1-67ac65d08b70", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f9dd0541bd29301ddcac07e5fe3e0365", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5797d503-980f-41d5-bc7a-1b30c68f70c7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19: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" + }, + "ResponseBody": { + "jobId": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "dc310bc5a8f3afd0003465f969a09994", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "92b689ec-d14f-4692-b309-5730d33b8147", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19: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" + }, + "ResponseBody": { + "jobId": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a79d67dbe9bd433aad189127629fe820", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7f7c537b-f7de-4437-96b9-3573dceb1c3d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8bd0dc4fc0c598b0352df8f45723c63b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "072f3ed3-7560-4e69-aeed-e1b916cdafce", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19: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" + }, + "ResponseBody": { + "jobId": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "960a72125ba1dca8d1ed2fda16a84d60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "87a2e90e-b35d-4ab0-a12b-f119118c5197", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8daa454c0ecf1acfb604718ff045eb8a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "88beeba5-cec2-46dc-a898-c8dcf2a8f960", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f01455515195f37e33f4bad791d6818c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b4d73796-e670-4c90-82ab-da7551356a5c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "12a797e03978046ba2efdf9de918ec8b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2aa6500a-cbfa-40f0-887e-c461987f31f5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c189a5025d94facbc6b759db54f889e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5d0e1a44-779d-459c-a0f3-aed305f3c2e4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "58afe582d89e1811e9104da571e1091a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1a91fb57-c98f-43e1-9803-4543a142e5ed", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ebd42e07c04c83f8cbac4cc0df90afaa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4ba489d6-8b9e-4d6f-9c84-90e317857634", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "041aff65936929ed9371d7830f2688e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b9e67aad-b608-4230-b6e2-2eb2ab3c978d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19: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" + }, + "ResponseBody": { + "jobId": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "25d33fad9d23c193ed2c8cf18c513859", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "94330ab8-0962-4f7d-af25-32c6123ce043", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19: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" + }, + "ResponseBody": { + "jobId": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "723fa36005c774b141ab58dbe97473a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0b1a29fc-5034-4c73-a4c8-2c6e7145d4b7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a01367248abcc8866b58173d06fc9c42", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "be03c16e-efa6-401c-b592-3662ad516229", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6c237e3816e6a81d8d5fe37845b7d878", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "72f7e6eb-84e6-43d6-8402-3cfa3c9652c0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "25cde6b9983ed69d1c77066eee736d45", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0c5a3573-f77d-4f68-a979-49242e2dcfe5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19: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" + }, + "ResponseBody": { + "jobId": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6ba3150e06510dbf4a6a125ca60e82b3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "55509b2f-7a5d-4a0c-b6c6-12ca1d3c57f9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1f849e7f772fa004e04c506e0faeba1a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fedfe67d-5d53-4863-a567-694175912a3c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2f699ef26d14b22727bfdad385402f0d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fc107a62-7cfd-427b-9519-4f5e74002132", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4fee52f54dee961611028a04b550fe9b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5e3af48d-0e2e-4cac-982b-48ee92582fe4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "086af8b052a4119f77d1f86f9c301aa0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "432009fe-d8a4-422c-b0ad-4cf7ea135338", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "bc79431d6abfa52b88d21e12e322fdd6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "003e6533-8604-4077-9867-83d28defd111", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8d223fc127d6a268b3dcd71d54a6fae0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "34def8ab-72c9-4900-93a3-2e50b3b4a44b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05:42 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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "72e7e9e741d746dcccc57fd2348c2e55", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2e01fe9c-ff7b-46d8-8238-786441519028", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5dae22d48d0ef5cadad609e2920e50e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bf14c4e1-19f9-40c9-a4d2-39af23c4cd5e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fa2a3dd88a3a7ffe63dcc011a7966e26", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "22fdbe30-bdb4-4809-bd77-8263d4a34325", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "324982ae9cf75ad21ff1980138f9b3be", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5e26d8c4-6bfe-489b-a6dd-682cd9760d79", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f7f99e743462491a232ffa32ccb94e43", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "72728f73-6b65-4837-b0c9-7c67c5d143b8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0f33e2681dc43bea6bd0da49f2fd4769", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e3edadf2-f029-42fd-8173-4bf15cf488a3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "099c0228779c7ac468000fc8a2a08d66", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4f1913d3-de4c-4e4c-937b-e0460fe515f0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05:50 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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "559954a3a3c557f9b3be8b9159d15626", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5826af5c-537c-4dac-b669-90610968be2a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c90990e7441cf1a61db9a7c40e2298ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0b7f8687-4583-4e56-830a-a0fac5feb790", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9ea57442f26484a4094555deeb322096", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c43ef059-a255-4738-8869-54cb2cf38524", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "12e1e8a9c3965e49ada8380bfc344891", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c356ee19-f757-441e-be39-e7d7e884e25f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "5" + }, + "ResponseBody": { + "jobId": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e54ec025b82bf5c2ec84c0d7eec705ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8ee0ce52-7332-48aa-8315-976751d81919", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "261a109886417f342a46f0bbb99888d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dcea94e2-2da7-4c37-b0dc-4ca188408fab", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2ab9c4fd3be4f16b26eb2511027270e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "07fddd30-12b2-4062-aae8-263f80774135", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "eb734da222199e508ccfbae5c7063b54", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6fae00a9-7f4e-497b-b47c-cbb89aa9cef2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2adaecfbdb0e5d06a529ff5561227cb8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "84a3458b-f8f6-4e6b-898c-f1428a3a8452", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:05: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6c190ad69d25daba741b9d1480852a1f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b187ad1a-00c5-425e-9a8e-788522d38ff7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1616d1b04598c6d7471545f022fb3d6a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "15103a9f-abb7-479e-836e-f69aa9b15a30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "21" + }, + "ResponseBody": { + "jobId": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "bd0e0253cfec5e2e31ffb6f33df1dd1f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a6900af0-721f-48c2-8faf-d48d0d1dcbc3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8fa5e0ff650c90203352250f57c9b878", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bc3474d0-26bf-41d2-a55a-30eee3fc9f62", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7dc133dd6d77e132a2b7e4988fe48955", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2f4f95ff-8e89-4f64-96f6-3e9c9b3b143f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "42f12637ad55ed5ee27e899aa91e0768", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "150bbfb4-bd42-4fe3-b1d1-20a6eaefb33d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0a153d46603091a8adc4ec548087014e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ea2f0c3d-5540-436f-b45f-ed6dfc41696b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06:07 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "38" + }, + "ResponseBody": { + "jobId": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "31d8cfc976d72f22d5d39af8e3983783", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a251107e-d287-4b19-8829-f904b5deb040", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "11" + }, + "ResponseBody": { + "jobId": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "52527cb07eced7247d5f9591c0096c5b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9e779ddd-815a-4b55-b05a-20d0f632c8cd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "dad03b7dd646d0901ae5345dc5afae14", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "19eb2e09-444e-4b89-9364-44b127b0e902", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:05:05Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "running", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "04a4698cae354a7fab00b377e1906fcc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7546a0be-3c3d-424f-a210-f905b9833874", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "49" + }, + "ResponseBody": { + "jobId": "80c69fde-3940-41c9-9e0a-6aa12b1d1e76", + "lastUpdateDateTime": "2021-06-29T19:06:11Z", + "createdDateTime": "2021-06-29T19:05:05Z", + "expirationDateTime": "2021-06-30T19:05:05Z", + "status": "succeeded", + "errors": [], + "displayName": "NA", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2021-06-29T19:06:11.3105563Z", + "taskName": "PersonallyIdentifiableInformation_latest", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "A developer with SSN *********** whose phone number is 800-102-1100 is building tools with our APIs. They work at Microsoft.", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 21, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1393333091", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://mariari-westus2-s.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 e9b8be567334..7f59ef81ef9a 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "337", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4a3934c583117a4b8a70b04def574834-a1a8d94cba64ed4b-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210517.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-b4b9359748bd0c439007d5c501687643-dc9ceeed55b1d944-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7113589c3007a78af3272be840001637", "x-ms-return-client-request-id": "true" }, @@ -44,50 +44,46 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "d7e0f9bd-2ac7-40d5-a40c-c5d5bc76eae0", - "Date": "Mon, 17 May 2021 19:48:37 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/10c13549-d92b-4b89-aeb6-6fb92fe79ba6", + "apim-request-id": "05f72205-e82c-4795-915b-13572b9e58b0", + "Date": "Tue, 29 Jun 2021 18:58:15 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/55441480-159c-4f31-9fdd-de4b85b71d1a", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2726" + "x-envoy-upstream-service-time": "245" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/10c13549-d92b-4b89-aeb6-6fb92fe79ba6?showStats=true", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/55441480-159c-4f31-9fdd-de4b85b71d1a?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210517.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "144d8fd0fea1ffdadc949dbbddaecf18", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b7b4f539-d077-439a-bef0-04dc46f57f76", + "apim-request-id": "e6c85a82-3ad3-4ddf-ace8-3818aea8a555", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 May 2021 19:48:37 GMT", + "Date": "Tue, 29 Jun 2021 18:58:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "10c13549-d92b-4b89-aeb6-6fb92fe79ba6", - "lastUpdateDateTime": "2021-05-17T19:48:38Z", - "createdDateTime": "2021-05-17T19:48:35Z", - "expirationDateTime": "2021-05-18T19:48:35Z", - "status": "running", + "jobId": "55441480-159c-4f31-9fdd-de4b85b71d1a", + "lastUpdateDateTime": "2021-06-29T18:58:15Z", + "createdDateTime": "2021-06-29T18:58:15Z", + "expirationDateTime": "2021-06-30T18:58:15Z", + "status": "notStarted", "errors": [], "displayName": "AnalyzeOperationTest", "tasks": { - "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2021-05-17T19:48:38Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -96,39 +92,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/10c13549-d92b-4b89-aeb6-6fb92fe79ba6?showStats=true", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/55441480-159c-4f31-9fdd-de4b85b71d1a?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210517.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "451e25c95048143288e779fc762b7962", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "14238117-3d4b-424e-8819-fdd0d5ce7423", + "apim-request-id": "65ac603d-ecc3-4cbf-b230-4e5d6b5ba405", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 May 2021 19:48:38 GMT", + "Date": "Tue, 29 Jun 2021 18:58: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-envoy-upstream-service-time": "14" }, "ResponseBody": { - "jobId": "10c13549-d92b-4b89-aeb6-6fb92fe79ba6", - "lastUpdateDateTime": "2021-05-17T19:48:38Z", - "createdDateTime": "2021-05-17T19:48:35Z", - "expirationDateTime": "2021-05-18T19:48:35Z", + "jobId": "55441480-159c-4f31-9fdd-de4b85b71d1a", + "lastUpdateDateTime": "2021-06-29T18:58:16Z", + "createdDateTime": "2021-06-29T18:58:15Z", + "expirationDateTime": "2021-06-30T18:58:15Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", "tasks": { - "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2021-05-17T19:48:38Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -137,39 +129,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/10c13549-d92b-4b89-aeb6-6fb92fe79ba6?showStats=true", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/55441480-159c-4f31-9fdd-de4b85b71d1a?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210517.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f329f0ff21bb9efb7e13957393cfc944", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c31cb90c-7a6c-4fd7-b10e-8fd5efe72875", + "apim-request-id": "18547f0c-0293-47b2-8e00-8c2afa8e438f", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 May 2021 19:48:39 GMT", + "Date": "Tue, 29 Jun 2021 18:58:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "10c13549-d92b-4b89-aeb6-6fb92fe79ba6", - "lastUpdateDateTime": "2021-05-17T19:48:38Z", - "createdDateTime": "2021-05-17T19:48:35Z", - "expirationDateTime": "2021-05-18T19:48:35Z", + "jobId": "55441480-159c-4f31-9fdd-de4b85b71d1a", + "lastUpdateDateTime": "2021-06-29T18:58:16Z", + "createdDateTime": "2021-06-29T18:58:15Z", + "expirationDateTime": "2021-06-30T18:58:15Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", "tasks": { - "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2021-05-17T19:48:38Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -178,39 +166,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/10c13549-d92b-4b89-aeb6-6fb92fe79ba6?showStats=true", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/55441480-159c-4f31-9fdd-de4b85b71d1a?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210517.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1b1f1358d0e27fee5d388bb985dd89b1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bb792bbd-1d63-4e3f-a2a4-742245687316", + "apim-request-id": "44f16711-c322-44c1-823a-eea80934c8b8", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 May 2021 19:48:41 GMT", + "Date": "Tue, 29 Jun 2021 18:58:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "10c13549-d92b-4b89-aeb6-6fb92fe79ba6", - "lastUpdateDateTime": "2021-05-17T19:48:38Z", - "createdDateTime": "2021-05-17T19:48:35Z", - "expirationDateTime": "2021-05-18T19:48:35Z", + "jobId": "55441480-159c-4f31-9fdd-de4b85b71d1a", + "lastUpdateDateTime": "2021-06-29T18:58:16Z", + "createdDateTime": "2021-06-29T18:58:15Z", + "expirationDateTime": "2021-06-30T18:58:15Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", "tasks": { - "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2021-05-17T19:48:38Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -219,39 +203,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/10c13549-d92b-4b89-aeb6-6fb92fe79ba6?showStats=true", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/55441480-159c-4f31-9fdd-de4b85b71d1a?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210517.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "edbc3b1bdb85a75d2980c735bbbe81b9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "12471994-5ba4-4987-85a4-985adabde89c", + "apim-request-id": "cb8b4207-1ad8-4fff-a6e5-064697f6b483", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 May 2021 19:48:42 GMT", + "Date": "Tue, 29 Jun 2021 18:58: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": "10c13549-d92b-4b89-aeb6-6fb92fe79ba6", - "lastUpdateDateTime": "2021-05-17T19:48:38Z", - "createdDateTime": "2021-05-17T19:48:35Z", - "expirationDateTime": "2021-05-18T19:48:35Z", + "jobId": "55441480-159c-4f31-9fdd-de4b85b71d1a", + "lastUpdateDateTime": "2021-06-29T18:58:16Z", + "createdDateTime": "2021-06-29T18:58:15Z", + "expirationDateTime": "2021-06-30T18:58:15Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", "tasks": { - "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2021-05-17T19:48:38Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -260,47 +240,117 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/10c13549-d92b-4b89-aeb6-6fb92fe79ba6?showStats=true", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/55441480-159c-4f31-9fdd-de4b85b71d1a?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210517.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "63a4341e5d0b2f8001a99582954218a0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0563bd03-f31b-491e-83e7-b9ac5c855058", + "apim-request-id": "1e3b80c0-bced-4aa9-bb53-16d5aaf19ec5", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 May 2021 19:48:43 GMT", + "Date": "Tue, 29 Jun 2021 18:58: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": "6" }, "ResponseBody": { - "jobId": "10c13549-d92b-4b89-aeb6-6fb92fe79ba6", - "lastUpdateDateTime": "2021-05-17T19:48:43Z", - "createdDateTime": "2021-05-17T19:48:35Z", - "expirationDateTime": "2021-05-18T19:48:35Z", + "jobId": "55441480-159c-4f31-9fdd-de4b85b71d1a", + "lastUpdateDateTime": "2021-06-29T18:58:16Z", + "createdDateTime": "2021-06-29T18:58:15Z", + "expirationDateTime": "2021-06-30T18:58:15Z", + "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.1/analyze/jobs/55441480-159c-4f31-9fdd-de4b85b71d1a?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5758e38adc137cbfb678f16108b9c49e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d7abd6a2-0b42-4630-9a28-1dc3b1ce14a0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:58: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": "55441480-159c-4f31-9fdd-de4b85b71d1a", + "lastUpdateDateTime": "2021-06-29T18:58:16Z", + "createdDateTime": "2021-06-29T18:58:15Z", + "expirationDateTime": "2021-06-30T18:58:15Z", + "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.1/analyze/jobs/55441480-159c-4f31-9fdd-de4b85b71d1a?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "a1de9130-1861-4339-aacf-8de423c29d60", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 18:58:22 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": "55441480-159c-4f31-9fdd-de4b85b71d1a", + "lastUpdateDateTime": "2021-06-29T18:58:22Z", + "createdDateTime": "2021-06-29T18:58:15Z", + "expirationDateTime": "2021-06-30T18:58:15Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationTest", "tasks": { - "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2021-05-17T19:48:43Z" - }, "completed": 1, "failed": 0, "inProgress": 0, "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-05-17T19:48:43.291273Z", - "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2021-06-29T18:58:22.5258474Z", + "taskName": "KeyPhraseExtraction_latest", "state": "succeeded", "results": { "statistics": { @@ -326,8 +376,9 @@ { "id": "2", "keyPhrases": [ - "gato", + "Mi", "perro", + "gato", "veterinario" ], "statistics": { @@ -350,7 +401,7 @@ } } ], - "modelVersion": "2020-07-01" + "modelVersion": "2021-06-01" } } ] 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 3f0e23cf3316..6fc18813a111 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithStatisticsTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "337", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e5d21946db0a6246b70719495c773384-45db31c072763d47-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210517.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-0454ee08c90e5d40bc577eee61528f11-28c732f28ef0af4d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2542d8e9f699af8c456bc28823041414", "x-ms-return-client-request-id": "true" }, @@ -44,50 +44,1785 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "c7932657-9ab0-4844-b6f7-eee0e966a49a", - "Date": "Mon, 17 May 2021 19:50:23 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/640f8d6a-2d47-4da1-b6a3-fc6aff4f024b", + "apim-request-id": "c3b869db-5c5b-48ae-9f6c-1303764c5aad", + "Date": "Tue, 29 Jun 2021 19:06:12 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "169" + "x-envoy-upstream-service-time": "231" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/640f8d6a-2d47-4da1-b6a3-fc6aff4f024b?showStats=true", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210517.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ed9d01e6f22a03f27d82800089c0a199", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "62567b8e-08fa-41cd-b7ff-1bdd483b5173", + "apim-request-id": "646ebe29-6150-4f26-8e50-468f84b76cc5", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 May 2021 19:50:23 GMT", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:12Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "status": "notStarted", + "errors": [], + "displayName": "AnalyzeOperationTest", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "90b6c8c3c1a1af318c24ffc2d4d26635", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "788e9a22-30a1-403c-a51f-3068da4bd683", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:12Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "status": "notStarted", + "errors": [], + "displayName": "AnalyzeOperationTest", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7d35e0d1c2bff7dee53fa717758b2584", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "190a99ee-383e-4b94-b434-662d17e92103", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5ac529c9844e2473cfee6106f2302eaa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b648fd41-99a5-4e69-bbbe-8be9f9151c40", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a82f4b1b238a00d9eabeaa62191a3900", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "868cc51d-9560-4b2e-978b-d9cc4d2a1c44", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "abf87bfe0c0d4ce66d10add060d805b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2800b6c0-9e14-40b3-9c9e-f8d90033bd3f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "45" + }, + "ResponseBody": { + "jobId": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "29fbfd107d5ca6f950c46f90da110bb5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fd6a4e02-fc61-4efe-94a4-ec26635c9dae", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "760760b583380f9d64e23b797508a012", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "98b923ec-2b97-4edb-b034-5708480c3ac5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1c51f5b90f1f81a481515b489c56725b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "26c34ec4-033f-4416-ad3a-84981f5d7fc2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19: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" + }, + "ResponseBody": { + "jobId": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ff1bf8058ed08c7c60ecc57a417f3147", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b33a11d1-7ad1-4e9d-9350-255d5934511e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e5d65d23efbfa595bc85f4e62754720e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "105ef287-1880-40dc-b6ee-c764e82dc7d1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7c74e06fa0ec2a4178c5bb324a2a3f02", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "47624237-d894-4e86-a54a-ee980cea1aa1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3f2414208c7f169b6275434a9a95650c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "87fb7342-e100-4f32-b4ec-c447900395af", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06:24 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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "610ab67ab40b835a1bac6cfa33625b92", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2f8f21d1-a0c0-401d-8323-bffc93aec61a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "13c6f246322fe38f445e19775cf690e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "70d99e57-923c-43b8-b8cd-e93066e3a939", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "d04fab10-7266-4723-b9f3-1baec6141fa4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "f7996e30-a5de-4aae-8e3d-6196a7e8365f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06:28 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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "42dfc7f9-a78b-4fd3-a510-a579d4212160", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "9058a5cc-df73-492f-bcf6-bab007d8cf0d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "1266" + }, + "ResponseBody": { + "jobId": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "8d907985-f1c1-4ef6-97bb-035d5c9c9bac", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "7366c1d9-1866-488a-ad4b-0c1222663abb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "bb8609bb-7cfa-4d03-ad30-d66e632069c7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "8c86a55f-630c-4913-bf2a-9efeee3a8aab", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "9b415b60-5461-4e61-bc4f-e10f8072b227", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "df2e4791-8033-4d0a-8485-612764be8ea0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19: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" + }, + "ResponseBody": { + "jobId": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "0bdee630-a4ef-4f95-9865-35c2a6e7f0ff", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "4bb43e80-d9be-4ae9-be7f-a1684a6f9e27", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "6a257d30-defe-4aef-96d8-2364fd717529", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "2ca8bbc6-8584-4106-8f76-36dd1add7f77", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "776fb75c-66e3-480a-aaf4-8241dc83d3d8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "40587a80-7b2c-4ae2-a294-d3265630d3ba", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "210655fe-b179-43d5-b9b2-f404552069ca", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "a8550f1b-a67b-4500-a647-c5c3b5228718", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "68a5b7f2-7e06-4745-8811-7022a8e5874e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "df204fa7-f909-4ff8-9e22-5613cf6261c1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "c2af0b46-675c-4339-b42a-7185a6fa11cc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "23527ea1-4635-437b-8e7d-9d006a82f16b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "bb85c473-80f0-498e-8880-a39f2da5013a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "1fce994a-b2b3-4f30-89e3-9af431de1759", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "e9b25ccf-e331-4d69-b2fd-bb7b97fd6ba3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "c3b4f370-030d-44f4-b7bc-dd448660597c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "143822aa-4ca4-469c-a7b7-606c096f42e0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "5f7703c5-31ab-4296-aa2d-fd1b6ab22381", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:06: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "17ccfc99-75f9-4784-9a04-cd6e90953588", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19: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" + }, + "ResponseBody": { + "jobId": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "e99b391b-1cd3-4d5f-8bee-694c072fd1a5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "9f59bcff-faaa-45b2-9ead-cdaa0b690637", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "14d5c819-a877-4d35-ace5-9f181172e82f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "7adde3e2-5956-442a-b019-0edbc7ffaf19", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19: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": "640f8d6a-2d47-4da1-b6a3-fc6aff4f024b", - "lastUpdateDateTime": "2021-05-17T19:50:24Z", - "createdDateTime": "2021-05-17T19:50:24Z", - "expirationDateTime": "2021-05-18T19:50:24Z", + "jobId": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", "tasks": { - "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2021-05-17T19:50:24Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -96,39 +1831,72 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/640f8d6a-2d47-4da1-b6a3-fc6aff4f024b?showStats=true", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210517.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "90b6c8c3c1a1af318c24ffc2d4d26635", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f3c027c2a174f9596eea6552746fb05f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "995cf398-8aee-4e91-b462-25adfc1d1ad4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "c1e18fce-5123-46be-8953-5931d5af1d15", + "apim-request-id": "3a5a9e90-f9a5-41e8-a35c-fa427a0356ac", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 May 2021 19:50:25 GMT", + "Date": "Tue, 29 Jun 2021 19:07: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": "640f8d6a-2d47-4da1-b6a3-fc6aff4f024b", - "lastUpdateDateTime": "2021-05-17T19:50:24Z", - "createdDateTime": "2021-05-17T19:50:24Z", - "expirationDateTime": "2021-05-18T19:50:24Z", + "jobId": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", "tasks": { - "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2021-05-17T19:50:24Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -137,39 +1905,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/640f8d6a-2d47-4da1-b6a3-fc6aff4f024b?showStats=true", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210517.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7d35e0d1c2bff7dee53fa717758b2584", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6ec48be7c49326e09b17e950f4364f56", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d5ee1912-ab9a-4679-9e28-df16f11c22cf", + "apim-request-id": "a8a8249f-16e5-4dd1-864d-202650fbd37b", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 May 2021 19:50:26 GMT", + "Date": "Tue, 29 Jun 2021 19:07: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": "640f8d6a-2d47-4da1-b6a3-fc6aff4f024b", - "lastUpdateDateTime": "2021-05-17T19:50:24Z", - "createdDateTime": "2021-05-17T19:50:24Z", - "expirationDateTime": "2021-05-18T19:50:24Z", + "jobId": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", "tasks": { - "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2021-05-17T19:50:24Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -178,39 +1942,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/640f8d6a-2d47-4da1-b6a3-fc6aff4f024b?showStats=true", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210517.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5ac529c9844e2473cfee6106f2302eaa", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "70aa20f005ae5f6cfc36a75392466607", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "060addcc-01df-4eff-baa1-4541b274ae35", + "apim-request-id": "6fed94af-2b08-460b-b4c1-bdd1806c4db7", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 May 2021 19:50:27 GMT", + "Date": "Tue, 29 Jun 2021 19:07: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": "640f8d6a-2d47-4da1-b6a3-fc6aff4f024b", - "lastUpdateDateTime": "2021-05-17T19:50:24Z", - "createdDateTime": "2021-05-17T19:50:24Z", - "expirationDateTime": "2021-05-18T19:50:24Z", + "jobId": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", "tasks": { - "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2021-05-17T19:50:24Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -219,39 +1979,109 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/640f8d6a-2d47-4da1-b6a3-fc6aff4f024b?showStats=true", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210517.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a82f4b1b238a00d9eabeaa62191a3900", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e96b57cd42ab5ccc1c5d2be378db9415", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f5ad800c-ef12-4b50-82b5-504ebc0e7ff9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "6c259ce2-d511-404f-8325-bac8375f0a46", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "591d9624-d5a6-4759-9af0-d36ef26e789e", + "apim-request-id": "b0238b3e-8192-470e-96a7-67152a1a46c8", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 May 2021 19:50:28 GMT", + "Date": "Tue, 29 Jun 2021 19:07: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": "640f8d6a-2d47-4da1-b6a3-fc6aff4f024b", - "lastUpdateDateTime": "2021-05-17T19:50:24Z", - "createdDateTime": "2021-05-17T19:50:24Z", - "expirationDateTime": "2021-05-18T19:50:24Z", + "jobId": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", "tasks": { - "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2021-05-17T19:50:24Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -260,39 +2090,35 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/640f8d6a-2d47-4da1-b6a3-fc6aff4f024b?showStats=true", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210517.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "abf87bfe0c0d4ce66d10add060d805b5", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "da8192a2f224204bf888c946d0703e8f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "15c07db8-08f8-41d4-9d8c-b420fcbecc49", + "apim-request-id": "a34ea1c8-7e0e-4797-8034-3732eb037dfe", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 May 2021 19:50:29 GMT", + "Date": "Tue, 29 Jun 2021 19:07: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": "640f8d6a-2d47-4da1-b6a3-fc6aff4f024b", - "lastUpdateDateTime": "2021-05-17T19:50:24Z", - "createdDateTime": "2021-05-17T19:50:24Z", - "expirationDateTime": "2021-05-18T19:50:24Z", + "jobId": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", "status": "running", "errors": [], "displayName": "AnalyzeOperationTest", "tasks": { - "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2021-05-17T19:50:24Z" - }, "completed": 0, "failed": 0, "inProgress": 1, @@ -301,47 +2127,228 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/analyze/jobs/640f8d6a-2d47-4da1-b6a3-fc6aff4f024b?showStats=true", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210517.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "29fbfd107d5ca6f950c46f90da110bb5", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9631d5c9f7586c4a0c741f6e570e0896", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a76127c4-5fa4-4587-a6a1-363ba17b0d28", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07:12 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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "2dbbb625-3e58-45b0-9514-129009f1c164", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "22091047-6c08-4c0b-a503-ff7c5f805495", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "3ee07b83-01d3-4932-bccd-2deb821165d3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "ef9eb5b9-61f2-47bf-b3b3-6fbbc7866f9c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:07: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": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:06:14Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", + "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.1/analyze/jobs/a3c79fd0-1e36-4ab3-9493-a4ffcc36a609?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.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": "ee392021-9ee8-4ebd-a8c6-00b140daff7a", + "apim-request-id": "1f552d7a-bb9a-4ef8-8ff4-41327d0578c2", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 May 2021 19:50:31 GMT", + "Date": "Tue, 29 Jun 2021 19:07:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "250" + "x-envoy-upstream-service-time": "61" }, "ResponseBody": { - "jobId": "640f8d6a-2d47-4da1-b6a3-fc6aff4f024b", - "lastUpdateDateTime": "2021-05-17T19:50:30Z", - "createdDateTime": "2021-05-17T19:50:24Z", - "expirationDateTime": "2021-05-18T19:50:24Z", + "jobId": "a3c79fd0-1e36-4ab3-9493-a4ffcc36a609", + "lastUpdateDateTime": "2021-06-29T19:07:17Z", + "createdDateTime": "2021-06-29T19:06:12Z", + "expirationDateTime": "2021-06-30T19:06:12Z", "status": "succeeded", "errors": [], "displayName": "AnalyzeOperationTest", "tasks": { - "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2021-05-17T19:50:30Z" - }, "completed": 1, "failed": 0, "inProgress": 0, "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2021-05-17T19:50:30.6089622Z", - "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2021-06-29T19:07:17.6496398Z", + "taskName": "KeyPhraseExtraction_latest", "state": "succeeded", "results": { "statistics": { @@ -367,8 +2374,9 @@ { "id": "2", "keyPhrases": [ - "gato", + "Mi", "perro", + "gato", "veterinario" ], "statistics": { @@ -391,7 +2399,7 @@ } } ], - "modelVersion": "2020-07-01" + "modelVersion": "2021-06-01" } } ] 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 47c25a5ab385..78de7e65e050 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c597a9b76f000f4386d2a7122c67f41d-12be0a4de7406844-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-af8b3f137c68ae43bcaab3a0c5555472-5e9f59c0e29c1c4b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7fbb9dea32b8080ffdad856789b2330d", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bcd70364-da62-47b5-a830-ca69f8d4f62c", + "apim-request-id": "5234c785-2639-4a81-93a7-77e4c3f1fcb7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 14 May 2021 18:16:32 GMT", + "Date": "Tue, 29 Jun 2021 19:09:41 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": "102" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json index fff7f1113ea0..17d762492a5c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ca185855ccee004fa202b12021743246-d5be115cec925c4c-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-b3a8549bf5c9a4498e5690ec6c6982ce-c96b4a8d56054c4e-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9ce6282fe98018f1ea732ad3ecd9e59c", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e145140c-dc44-4fe1-b15b-8bdf8d4a57e9", + "apim-request-id": "3a60056b-63f0-4b66-ba74-677d882c883b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 14 May 2021 18:16:44 GMT", + "Date": "Tue, 29 Jun 2021 19:09:51 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": "86" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json index e8fddd6739c5..a9f095f8d1e8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-db267bd1498f0847babd9a9c2910dc97-2abdc254f5180247-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-285c589e3079c14498f09078991ad780-188ae2c1fe5aca41-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "119c99db1e02c34777426e77d5c75cb6", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e4ab61e8-178f-4077-84ff-d8c021fb08c5", + "apim-request-id": "91247d20-9524-4d01-a6d0-549852ab10d5", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 14 May 2021 18:16:33 GMT", + "Date": "Tue, 29 Jun 2021 19:09:41 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": "91" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json index 33ff534dea16..9653cdfe8407 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d7ea12c28a256d4088cd284282044b46-d3cdc7881a60a44a-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-dddb730e121b2c4ab83f2a702470410a-7e06b3e43fbcf145-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9d1067da67ede0f99771b2c8070f5079", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "404efa21-84e1-4e30-ba02-59a280769f19", + "apim-request-id": "6e9aa1b4-3297-4f51-8592-4c9858d0decb", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 14 May 2021 18:16:45 GMT", + "Date": "Tue, 29 Jun 2021 19:09:51 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": "184" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json index c8c87a616a62..1c66375fdc96 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-da39b3f550b5cd4fa91962a04b971fb0-cf91bacc0d66e249-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-99b93c33ff868341b12453d8228f5512-7c9775ac4077914b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "86b79e2f0559eb97f25b1c5b233a68dd", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "df3038d0-7840-45d2-b887-65621afb53db", + "apim-request-id": "94f55937-a649-47df-903b-90f452dbee93", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 14 May 2021 18:16:33 GMT", + "Date": "Tue, 29 Jun 2021 19:09:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "98" + "x-envoy-upstream-service-time": "107" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json index e91364d133a1..8d2806a2604c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-514c399080cf9045acb1c4e86573a632-7476866449b79c4a-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-4df0dee092b98d4cb5b10ad291a1e4e9-d4ae06f682dbad48-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "300adb4a8ab9aa03c50b104c35b7e035", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b01990d4-5726-4be8-b8e3-8aa31346d955", + "apim-request-id": "982d9aca-242d-4ef0-b6fd-a362a1864443", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 14 May 2021 18:16:45 GMT", + "Date": "Tue, 29 Jun 2021 19:09:51 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": "97" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json index cf932df6eaf2..0221e5c2a1e3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e640b78d7860b54b8451f2a256807cbc-384cad9f16412e4a-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d0020f6ce402f5418b02ddfba34f687c-cd675c61a9200342-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "abe848a0b41107615847f9d88e292402", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6d236a3e-3565-4ae7-b757-99de73b2cf8d", + "apim-request-id": "47a1fab2-b1fa-42a9-a308-09b8cbabdbbf", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 14 May 2021 18:16:33 GMT", + "Date": "Tue, 29 Jun 2021 19:09:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "84" + "x-envoy-upstream-service-time": "95" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json index 5bb19d43d34c..a3ae566bbec3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6f7b5895d7c7cb48acc9020d3ed16cc9-8b63496610482841-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-3c1f59df1c3439418d749c95e9e08285-41d4a87f4bc84c4d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e76a4622dec6c96d7ae12bfd307d2c70", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c86292fb-c017-4cb2-a9aa-b839d1fd4654", + "apim-request-id": "977f1a4e-2f68-488e-817b-9003eaa1b949", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 14 May 2021 18:16:45 GMT", + "Date": "Tue, 29 Jun 2021 19:09:51 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": "92" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json index c60ba15bc4e5..66dba1010b52 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-abc08c5f90dfd94f8bc94cd78c0dd70b-d98e13ee8b7b3441-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-ffbd5a6587d2e74fae1af9c3e312eec2-d5497017cb876f4f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ddaaf35e96b9dae8e520d1e25db41ef1", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d36e08df-5793-452e-87b7-3d35f323ceaf", + "apim-request-id": "98e6302d-68eb-4643-9456-164fd4168558", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 14 May 2021 18:16:34 GMT", + "Date": "Tue, 29 Jun 2021 19:09:42 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": "507" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json index 300afee4b9c2..1a6d11142cfd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8d649113207f864da13ce3bb2fac4097-acb280eca6748441-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-b944cdb8c9999742975386063555ab0d-0c428dd6df726e44-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a461009a7ec465a3d8be1a54c58e3575", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "182101f1-6324-480c-b804-c8eee0348fc8", + "apim-request-id": "8a32ec6e-5ed0-4794-90e3-482bd4d90a7c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 14 May 2021 18:16:45 GMT", + "Date": "Tue, 29 Jun 2021 19:09:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "92" + "x-envoy-upstream-service-time": "106" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json index 9df141d5f8b8..cb78ec20d489 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ac1c27e11b4fa947a11c75e52405fd08-dd6f58c4912ddf4b-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-e80928408932f2458f3af68d40365661-3ae8d460b1b10c43-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f4f79420d55186c560e783cd65904498", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "008f693f-0eeb-4392-a5f0-45f287c7316c", + "apim-request-id": "a8bce7d8-73e1-46c2-9b2d-6028d4ff8928", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 14 May 2021 18:16:34 GMT", + "Date": "Tue, 29 Jun 2021 19:09:42 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": "94" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json index 15a4b8447d87..3eaa39b21498 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-55dca85301570a469f24e650a4111d9c-69c903b5cf72314c-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-bb59f4644d407346b531ccfec48dfa8f-3162262290ebd544-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a82300e8850457b9e1ddd84e5e66ebf5", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "26ad754f-9fcb-4737-8852-b92fb5d17cdf", + "apim-request-id": "8e3fc48a-d748-4aa9-93fc-26e1143c74da", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 14 May 2021 18:16:45 GMT", + "Date": "Tue, 29 Jun 2021 19:09:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "95" + "x-envoy-upstream-service-time": "103" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json index 1eeadffb2f15..167550327abf 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1fbc3c5af5bd924989384efe14748894-460b69e769036441-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-2c615afa0b581148aba5f3249414d956-b0d3c2fa2e51374c-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d0c9faccbe22f6229408f2811c507283", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "232a253f-3eb4-4e97-89cd-695b653b20d1", + "apim-request-id": "d05e9d19-a3fe-4b76-bfbd-d626ba006a55", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:07:22 GMT", + "Date": "Tue, 29 Jun 2021 19:09:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2588" + "x-envoy-upstream-service-time": "98" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json index dc02a249e897..4683ed7f01b5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a3e79d3db0fbdd4e9ef2f78d3dd368c1-7ba7e1a798d0a346-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-4d383644c6b1f643a7c5c5930051c99e-2d22147ee96f594a-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "99f36dc03d5b69cad15ff682fb68e8a9", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2fb022b4-5677-4cbe-af10-c4964e712b49", + "apim-request-id": "fc4842c9-86a7-42dd-a5d2-423d91b77855", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:07:43 GMT", + "Date": "Tue, 29 Jun 2021 19:09:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2584" + "x-envoy-upstream-service-time": "129" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json index 237e31150f20..dba8484272ee 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b247df5451400f4e81d3d69382bd2cb7-bd5437d09b45294d-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-c96c6849e0286e458b5e7affe11c4b89-1d080a828eb6374f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ea37c4c5b43ade506c055e9d1167082c", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ee276760-3794-4e26-97fe-1f481d37aa3b", + "apim-request-id": "5a889637-8842-479a-803c-f78b25783716", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 14 May 2021 18:16:35 GMT", + "Date": "Tue, 29 Jun 2021 19:09:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "152" + "x-envoy-upstream-service-time": "258" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json index 4c3b7327479a..df58f9cdbb5f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a105ba774a12b74f95dcf72ce634c141-ea22cc9619fddd4a-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-09d45f16b4be7c42a6232436a19a512a-6a329afd42396b47-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d297a709781eea07c58dac26eba5fefd", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eee7cdc8-ff7a-4b8b-a6f8-c0c6322374b5", + "apim-request-id": "d157f1b3-9dcc-4b93-a46a-f0c5bdb7c939", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 14 May 2021 18:16:46 GMT", + "Date": "Tue, 29 Jun 2021 19:09: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": "82" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json index 3fe73a4d341c..4c94eb731a7a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-14830682cecacb42b14c3cfe15f26d79-9848b6fe95f65a44-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-5fbac56cc064a842a38cfdf9edede204-b94e07eea286a84d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b93a282865c5e574aa1703755dff0595", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "393b1381-38e0-4be8-a860-6d56640e2e80", + "apim-request-id": "a7a6a19f-edda-48d4-a686-9fee8c32eb77", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 14 May 2021 18:16:35 GMT", + "Date": "Tue, 29 Jun 2021 19:09:43 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": "101" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json index c46cb3e489b1..9bd7daf65c67 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b28f349bd7071d40bbfe2dde8677942c-d08a67a9cf8d224b-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-0c98fb9306084147831b1f1d587bbd64-2430b462f09aa748-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "896aa869bee9e15710e9b281353ff7e1", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7d2c4362-11bf-4cb4-8fb8-b62e336dd0da", + "apim-request-id": "5012a263-d4a0-472e-915f-d82799fb17f4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 14 May 2021 18:16:46 GMT", + "Date": "Tue, 29 Jun 2021 19:09:52 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": "114" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json index ea4b6112d2a8..bea19527b3ff 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a450cf73463d2b40b5a57eeac7b4f357-a76ee558846f7e45-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-4c5ed1fc89fcfc46a6d4b19bbddab54c-dff1772dedeab94e-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f4c1d2e666ddf215fcefdfedc5dd71c8", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a4ac97f2-7014-4d45-87ef-842cfafa720c", + "apim-request-id": "ab4dc9c6-2e3e-4c04-b1e2-85c8de047c87", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 14 May 2021 18:16:36 GMT", + "Date": "Tue, 29 Jun 2021 19:09:43 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": "140" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json index c3a3c678c4c5..c7977a1a5158 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b91e39bb8136f84ebdaf821868b4e9cf-1e13ea75b15d1849-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-e8206fde2081084ea4e945c08ed0d6b5-effeca6f24278b41-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "26baa46075d446ba158f6fd6eeae447a", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "02f03d49-9797-4f81-adb1-462440bfe59a", + "apim-request-id": "0024df30-b0f2-4155-b7b8-c7c0c5c29ebd", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 14 May 2021 18:16:46 GMT", + "Date": "Tue, 29 Jun 2021 19:09:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "156" + "x-envoy-upstream-service-time": "103" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json index 97fcc1e081a5..4a39491dca89 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "207", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5a2716df3dbd2c4d956d4a76582ae900-6204dd7f9b820848-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-cc2f55f991c2884ca6eacb3f3470977e-4e984ff2eb520547-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "381e2b63f2088d45202cae7fd25e5042", "x-ms-return-client-request-id": "true" }, @@ -34,14 +34,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "da3d8f64-26a6-4610-8e9c-36c63cb7a578", + "apim-request-id": "a50d15db-24e7-4465-af0c-0e01951b5353", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 14 May 2021 18:16:36 GMT", + "Date": "Tue, 29 Jun 2021 19:09:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "102" + "x-envoy-upstream-service-time": "88" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json index 95b1c4d2b18e..b4eb74f4f24d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "207", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7fa1374c17899343b1052732ef962e7f-9189d478611cc744-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-e9b0be23baa7dd469d1ee835a19422a6-1fa50ebead3e2d44-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "29ac615e7a25f0506bd8c86ac7133e14", "x-ms-return-client-request-id": "true" }, @@ -34,14 +34,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e4d0559a-76ab-4b59-957d-1ec85ac1bd2d", + "apim-request-id": "1292ba94-677c-4577-9274-a41f4d137cef", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 14 May 2021 18:16:47 GMT", + "Date": "Tue, 29 Jun 2021 19:09:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "113" + "x-envoy-upstream-service-time": "86" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json index fb66b0ac0e27..e6b95d89c84f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a4d5aee4c9c09b438b6b77572b456a59-5b744c8280cb1743-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-e1020ba06da54d4eb5809b934f09d236-18e36e4a8435ec45-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e97c715478efd2b509099d562415356f", "x-ms-return-client-request-id": "true" }, @@ -24,13 +24,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "d96e7dd6-a987-4c67-afb2-ea028d5d32d0", + "apim-request-id": "e544193d-1c6b-463f-845d-8bba351759ea", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 18:16:37 GMT", + "Date": "Tue, 29 Jun 2021 19:09: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-envoy-upstream-service-time": "4" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json index 991faa7efe8c..22b1e983e933 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9b9d0e015f9ac249ba21e44b0e4a8bac-b437565bf323ba4d-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-a2363d0b48c5b0428369a22d586a3d7e-00d5a3e36d475249-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7d28785fafea6a705989dd511c352058", "x-ms-return-client-request-id": "true" }, @@ -24,9 +24,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "7421c3c8-b57d-49ca-93f4-40f3a8c13044", + "apim-request-id": "473d59be-8a5b-4b9b-a5b9-77e9e37af329", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 18:16:48 GMT", + "Date": "Tue, 29 Jun 2021 19:09:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json index 1fef24056dfc..32b4ede5e1d3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-49433adbf596b940953098e54f88a3d2-89c4f92f26b8904c-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-dbc3cb9f0085904d8bbc30b71901d77f-976c9a6fbdcf164b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a82047bc1e56521f19fee095619725e3", "x-ms-return-client-request-id": "true" }, @@ -24,9 +24,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "97e50b16-ccf6-4fa9-8dac-b0c7090fdc7a", + "apim-request-id": "a6170f5f-5a25-4855-b626-c2dae92407ce", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 18:16:37 GMT", + "Date": "Tue, 29 Jun 2021 19:09:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json index 584377d30206..d1bac8cb2efc 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-54878472f7ec904b92421e78fcc290f5-e2bee692a2fbc845-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-1e06da4df3cb6b4caf2a2527b78613a7-8194847d91562844-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e4b5e1c573e3bc3fc5137a6a90633740", "x-ms-return-client-request-id": "true" }, @@ -24,13 +24,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fb25390e-67da-469a-9b0f-d3d26883ba75", + "apim-request-id": "60e004e6-40ae-4294-8d3c-dcd78287c0db", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 18:16:48 GMT", + "Date": "Tue, 29 Jun 2021 19:09: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": [], 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 236f0b6d9adb..f1e32ca64286 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5b83f52968236b4880d2440f16339555-5af1947540accf46-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-965b72b85613a446958b8fd23310d350-73e11682d4e0c14d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4bb052b32c66958101e8bfb2d70a96bf", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1079f875-5796-40f0-a2f4-e3d4acb4e207", + "apim-request-id": "cd9e6f31-fd33-4c09-9f2b-007cbda7b2be", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:07:25 GMT", + "Date": "Tue, 29 Jun 2021 19:09:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "102" + "x-envoy-upstream-service-time": "2568" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json index a2f6d639f02b..cdce0c138f54 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5f9695e41ae81a40b3f036b20113da67-6f154d7cb550764c-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-e45c51903c3e3e4abde6a5c6b92a38dc-222b7a7db6ef1c4d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "10469efe411909195ef72681bf249b22", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d3de49db-8b51-4c2b-838d-23210723c1e6", + "apim-request-id": "7487896a-3861-4b72-b090-9688870c1c56", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:07:53 GMT", + "Date": "Tue, 29 Jun 2021 19:09:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5090" + "x-envoy-upstream-service-time": "2581" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json index 8f6594c77bdd..6d6ec6544aab 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f569734aa7ffa94091b56212c722a7bf-c867a83c3fb35246-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-0424b922e795a1429d267d7de2e50ff3-d9ebfbdf91d1264f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "380d3332cec3ce7a5b0d21c20c2f8b8d", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1dd5a0c8-dde8-4195-bebd-157c820228f1", + "apim-request-id": "5a3877c3-3fda-4152-a0fb-1d20acb26e69", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 14 May 2021 18:16:37 GMT", + "Date": "Tue, 29 Jun 2021 19:09:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "106" + "x-envoy-upstream-service-time": "100" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json index 6c4ba1cfdf0c..449a8ab17f66 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-36f86e375b4e3d40af980accca4b0059-fa6955de3872f740-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-a61db70b064db34fa1644a89ad3e5371-7c3e056e8892d04c-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f794f0733bb3c43d680189f109278930", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d5d70494-fd4e-4286-bb2c-5894ad4f0f54", + "apim-request-id": "5dbec839-7657-4631-aeb4-9eb4acf5ec22", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 14 May 2021 18:16:49 GMT", + "Date": "Tue, 29 Jun 2021 19:09:55 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": "81" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json index e8f292674389..719ecbc25592 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2012c32b7f289b4a8afca797b47d041a-7615dac1d5f08d4b-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-84d53a7dfe70154e9318c1197ffb53f7-788ea02f5b84894f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4e5bdbe5820d38723d195b24082e286d", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "11cce8b5-dcf7-4657-9b11-cfad6d3a25bb", + "apim-request-id": "8b8d8a4b-0554-4a24-9fc6-cd39145f99b6", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 14 May 2021 18:16:38 GMT", + "Date": "Tue, 29 Jun 2021 19:09:46 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": "94" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json index db49b28fbfe8..edad7de602f8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f3f8f00b66ab4d4598ad8cce41d6d69b-98d724eb33634449-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-0926ac81b01e4d43971f5d900eca8f81-1e31f5fc6627b542-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "03ba29d245db7d4660e70538d783a159", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d1b13bd1-9eed-4c5a-bbc4-e52eb1ddfb2a", + "apim-request-id": "ae3502f7-879b-4cb4-b961-c8977298f4fa", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 14 May 2021 18:16:49 GMT", + "Date": "Tue, 29 Jun 2021 19:09:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "95" + "x-envoy-upstream-service-time": "80" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json index d79438591ee1..fbd3c5d9dce1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9d29b2d768f85d4f940c3bf01044693e-85320dee75ab4a44-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-5dcd5513d93e694094891cca315acf12-a40030a355244544-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1cd519dfbccdba31b1f719f550932df6", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f5614329-ae2b-4278-a74b-38a8863ce1c4", + "apim-request-id": "741779ec-f43b-451b-ac52-28cb232474c6", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 14 May 2021 18:16:40 GMT", + "Date": "Tue, 29 Jun 2021 19:09:46 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": "88" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json index 7642578434d1..fb860ed404c8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9394d1b031c2954587e032292ccce241-4c7f4bf777abda41-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-a8615c12e9df10489eb7ccc42c2e8111-e81ab808f3b2824d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e4628ff9d75e35fa30a2a74d75b5d054", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "13163133-1504-48c4-be01-664801806d39", + "apim-request-id": "6058ff3b-0194-4957-bc6e-fca3275acd3b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 14 May 2021 18:16:50 GMT", + "Date": "Tue, 29 Jun 2021 19:09:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "113" + "x-envoy-upstream-service-time": "96" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json index 8a510facf230..46f0c8ef675b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bc87c316dcba1d4e91a2a4a6d49e0c96-0ba32dfa30f63346-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-9ade423ea4018f4b9688f162da9ec5f2-67a7889a2c707749-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0226741a4a3852fb661facf15a20cdfc", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fd151357-e81a-4d75-9c5a-36bd71682aba", + "apim-request-id": "39fc1fcd-60b3-4ab6-ad33-a22513472d37", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 14 May 2021 18:16:43 GMT", + "Date": "Tue, 29 Jun 2021 19:09:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2829" + "x-envoy-upstream-service-time": "102" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json index be50bdf8d033..f7861ea23183 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2e6d5d5c30c8e243aee88890c7bc5518-6b9721382e5d1d4c-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-101c0bf95885d54ea280c7d87bc63aa9-b0585a4f8129c641-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1d19c9bc741aeaae2a3044500760d7de", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4233c682-f87b-47af-bf80-e96a2fff8778", + "apim-request-id": "85e152f4-e328-4b84-ac86-542e0b763dcb", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 14 May 2021 18:16:51 GMT", + "Date": "Tue, 29 Jun 2021 19:09:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "148" + "x-envoy-upstream-service-time": "108" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json index f83003c41f39..52fd8cfd5f1a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ad87d5f68386c741b07dbb7d58874fa9-282253404872aa47-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d8edc61bf3eb3b4e89e6db3c4d8af42e-7bb8cc9bb0f0ea4d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b1c263e328066fc8dce532b649cbfd03", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bc6b12b8-56e5-4d0a-8008-25bee361f540", + "apim-request-id": "a3d90b0c-9e17-48ec-a020-2d42a1ef1555", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 14 May 2021 18:16:44 GMT", + "Date": "Tue, 29 Jun 2021 19:09:47 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": "110" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json index ea4fad90bcd5..6b352e1a74b1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1a0c7c42d3f9704685fc6926940aa076-15cd01ba83fad740-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-77464a50d7fee7448477f44d81209f70-0d6b1d3eba623647-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "61e4104888cde5cbe34786063a0401dd", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dcd28aaf-946e-4e7a-be34-db8d66aaf329", + "apim-request-id": "93bc3e15-6c14-4e4b-83e7-b9faf291d3b2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 14 May 2021 18:16:51 GMT", + "Date": "Tue, 29 Jun 2021 19:09:56 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": "83" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json index 5cfb644d6216..4a68a6b53764 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "127", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ca73208942bad340ac8a5964fd73e9c0-6a0f86310f83bd49-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-528fb41df9d2544c91b7655a8253b556-bb12173851df7f4c-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1e33ed24967d42087f8188a6111ef9b0", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a96c9902-c77c-48ec-a2dc-d92110eed6c4", + "apim-request-id": "f3d334df-4c0d-48c0-bbab-eb78317a0e62", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:07:32 GMT", + "Date": "Tue, 29 Jun 2021 19:09:47 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": "83" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json index 6189b1c6bb01..cc4a546bfe4e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "127", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c42177fce4ea1246b6a6e6b8112b1c74-e3899d030ba4ec4a-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-3b928953b2b9a74896f7a0cd6d53cad5-b40a863113c94948-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "504a9c53bf1eca7814bfce867e01718a", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "18e0cb3b-bbb6-4d57-b3d9-d46eb1ca7441", + "apim-request-id": "42b307f4-fc4d-44ee-b29f-2fb22a1929f6", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:07:59 GMT", + "Date": "Tue, 29 Jun 2021 19:09:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "106" + "x-envoy-upstream-service-time": "82" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json index 6c2502457606..dbd8a6935ed6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e984105a71ebc34db1e421c5fd8f0d66-e17699be6537c442-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-61530bf02ce6e54b9bceaaf2ffd60df2-1e8768081fe38e42-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "558a7442c3b1c5137141db1dd8ca6858", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b928ad2c-b2ce-4fac-83ab-075624523c16", + "apim-request-id": "a2da9ca3-3a5b-4398-9b25-b9ee5f7c4693", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:07:37 GMT", + "Date": "Tue, 29 Jun 2021 19:09:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5086" + "x-envoy-upstream-service-time": "107" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json index ab998d3dab08..e58e25a60c07 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-10991cd3e36df14ca65842af02e6c3b9-63ac88ead6b92c4d-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-24a69722a1f25346a63ed435dd5dd415-d9fea445f6c1324c-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f6867f38d810d57a89dad763eab07a05", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fac43239-4676-41f3-8653-600d1b53e80d", + "apim-request-id": "2fd6b313-318d-4a3a-837f-b61e84f0b948", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:08:00 GMT", + "Date": "Tue, 29 Jun 2021 19:09:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "80" + "x-envoy-upstream-service-time": "102" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json index c6cfd63c0477..0ad1fa6a168e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "80", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b68965b3a3d8ec4cbbe188819d3e4580-97247719c62d6b4a-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-8648336e90133b4fbfc0104753b2d066-9b1150403f568647-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8d0590d28394353aadd5df7e697ac312", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a4134e1c-621b-40c6-bc7a-4950bdf68ccd", + "apim-request-id": "41a9853f-e96b-4c69-b84e-15f6a0d45107", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:07:38 GMT", + "Date": "Tue, 29 Jun 2021 19:09:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "81" + "x-envoy-upstream-service-time": "2583" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json index 0a48fb469b1f..69481107c62e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "80", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b8934e02d9754e4f8bc124103501292a-7b4ca998df6d0c43-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-1f2ea69244fc1b46a166b02ae3f71193-50fb50d5b556f14e-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "94ab183ce7dcf7c7f3beeb119ae08867", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e663b8d9-c7c2-4ce8-9f24-3d79913e4a80", + "apim-request-id": "7f5865e9-2b6b-40ba-b8b3-9527dc645cda", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:08:00 GMT", + "Date": "Tue, 29 Jun 2021 19:09:57 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": "100" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json index 9ce6eceb1ef6..c36558cd621c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b524be5c2b054e4aa71dc21ae72dc6f2-b18a183c89672a4c-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-64e8d32a2c66ff47a1dc00f8d5bb9204-d8230f6caabf764b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5005f5e8a08b47218215f19574b370f6", "x-ms-return-client-request-id": "true" }, @@ -34,14 +34,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "373c845a-60e0-4db5-999f-f241c54e1e96", + "apim-request-id": "e71f2866-8ccc-4a3d-b02c-7f0ce6f142e0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Tue, 11 May 2021 16:08:01 GMT", + "Date": "Tue, 29 Jun 2021 19:09:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "documents": [ 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 c4627338aef9..7375e1efdccc 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-66984dcb37f91a4ea39c3c4c52825238-e87c40e87d108c4f-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-391972c3fd7ee245b9e3c5ad3e71b8e3-545d8d19eadf3a42-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3574863b78b3d4b99962ee1a8b7bbd89", "x-ms-return-client-request-id": "true" }, @@ -34,14 +34,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5947e4cf-9b32-4d5b-b7be-a384e1f39e59", + "apim-request-id": "cd4bef78-b2b0-4cb7-ba60-bd808309c4e2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Tue, 11 May 2021 16:08:22 GMT", + "Date": "Tue, 29 Jun 2021 19:09:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5020" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json index 82351d20c86a..5ab79e93c5c8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/languages?model-version=2019-10-01\u0026showStats=true", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/languages?model-version=2019-10-01\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e95ecf7296d1804b9f19b7a34db30938-8fb2205376f3d94a-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-adc9310ca90aca4a9f7a7e6a49f0f616-11a62fb5b07ac14b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "738db85ac016be284349434968e4adff", "x-ms-return-client-request-id": "true" }, @@ -34,14 +34,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "29c3bfc5-ba49-45b5-8186-70d7152ea9ed", + "apim-request-id": "e01624b7-ee02-4dd4-a479-0e0d38ee8e10", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Tue, 11 May 2021 16:08:03 GMT", + "Date": "Tue, 29 Jun 2021 19:09:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2232" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json index c195d8307b90..9373a990fe90 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/languages?model-version=2019-10-01\u0026showStats=true", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/languages?model-version=2019-10-01\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e003804230ab664d905445741f3f41f3-ddea0aa96ffd2c4c-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-ebe3199d9aa3e84698131b0bc7250d42-4c3c57d3ad251c41-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6246079b8393935bca52b813124b2ad7", "x-ms-return-client-request-id": "true" }, @@ -34,14 +34,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fa77921f-4067-483a-9dc8-9a42a85e592e", + "apim-request-id": "9f5287d8-ca09-4816-be55-424e65cbb664", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3,CognitiveServices.TextAnalytics.TextRecords=3", - "Date": "Tue, 11 May 2021 16:08:22 GMT", + "Date": "Tue, 29 Jun 2021 19:09:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json index 26dbe44a1ff0..467ae73e99e7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ebe2d0b54599454b97ade08325dc9512-265544276401fa44-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-f408bb99a8e12e47a6e35abb2b5de434-b6ac224bdf9cac40-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9ed49d935379ea824d7c2153a1e6e6e4", "x-ms-return-client-request-id": "true" }, @@ -39,14 +39,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3b71af96-f994-42df-9d52-ab08a2cdef39", + "apim-request-id": "4897bb86-5385-4a40-a661-0940ac2c3874", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Tue, 11 May 2021 16:08:03 GMT", + "Date": "Tue, 29 Jun 2021 19:09:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json index 61c724574f4c..7d44bd99ae60 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-72f7f263e82b5a4c9e38e3a09b44c372-e5e197ec6b4e0342-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-3d8710d78755f54393194a72816d9e70-e782e82af290bb44-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "da5f41d41140dce5b95983493bb999e3", "x-ms-return-client-request-id": "true" }, @@ -39,14 +39,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a54441a9-9bd7-4d3c-a06a-bf349bfd6e44", + "apim-request-id": "16e59663-542d-4be7-8b1c-e469795863aa", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Tue, 11 May 2021 16:08:22 GMT", + "Date": "Tue, 29 Jun 2021 19:09:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json index 6303283d17a7..cd01478643e1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/languages?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/languages?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "156", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-249057d9a5273b4baa5c8e54fcca19cd-382c27edcc411846-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-f39f4734b300f04cbd8b0e88e5757581-10b2c48119916641-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3ce40d8d4db949068b12a56808d1cfa5", "x-ms-return-client-request-id": "true" }, @@ -34,14 +34,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "65c84ad0-ee38-4bed-bcca-dbe9d091133b", + "apim-request-id": "7fcdd97b-87f9-489f-bccb-1c12589ec40a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:08:06 GMT", + "Date": "Tue, 29 Jun 2021 19:09:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2516" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json index e05a19ecd0ba..944716f5004f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/languages?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/languages?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "156", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-659df37f63cea449859a9a9bc4e0dba0-b1b424f78c33b649-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-7939dfbe7372bc42b39fd2aa4762b8bd-5e4a06616de7bb4c-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "51807d44b190171f3639086e14582723", "x-ms-return-client-request-id": "true" }, @@ -34,14 +34,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9cfaf13a-52e3-484d-a9dc-2b82b7b37ddd", + "apim-request-id": "068ba71b-a250-45f6-9986-6c3991f9ed1f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:08:27 GMT", + "Date": "Tue, 29 Jun 2021 19:09:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5014" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json index fa90ff595237..a0fcf2164681 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "67", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8a1c1aeb04a1a54ba40afe7793e6eb09-8e3ca5eada229c44-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-913b88836dfe944fb2c724a1d327e35a-006d524b6b54094f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1a3b3f53b2eb19e83bb91b78bee10b95", "x-ms-return-client-request-id": "true" }, @@ -24,13 +24,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "44a0abd0-9f3b-46bb-bee8-666deb92632f", + "apim-request-id": "04c57f98-0aca-4cd0-8ec2-145b7e37542f", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 11 May 2021 16:08:07 GMT", + "Date": "Tue, 29 Jun 2021 19:09:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json index 28e44f21e207..40a177a1d308 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "67", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f797591366459541b4ef572881c5e6e6-351ffa19322d6147-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-05fce49907f6e3488320831257c60996-51ae569d211df041-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b23c80179f571f450cf30413f8966972", "x-ms-return-client-request-id": "true" }, @@ -24,13 +24,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "be1d4246-ad6b-4c99-a961-7b5a91b1c3e6", + "apim-request-id": "0af7c3fd-dfed-451d-9275-2ae2adfae106", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 11 May 2021 16:08:27 GMT", + "Date": "Tue, 29 Jun 2021 19:09:58 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": { 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 37c8745e7684..0c893f37573b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "57", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7aac37b1c111a74bb5e14bb2258431d0-641c582234bee64d-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-4e7dbbe71615ee4292d6633772c90598-5f9157cb28a04a4c-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ed66d74da14036cde144d6235dacd6d3", "x-ms-return-client-request-id": "true" }, @@ -24,9 +24,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d886e7a5-1137-4414-be78-6965677234a9", + "apim-request-id": "a3afc39c-b5ac-426a-a356-6aba42ba3a80", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 11 May 2021 16:08:07 GMT", + "Date": "Tue, 29 Jun 2021 19:09:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json index 08ed65b62d9a..1cd3902c0f66 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "57", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f950b46f6e172343afaf2d7ce67a1912-2e7fc359efafd248-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-2ab57df9f29b9d449160faca717d1f72-8307b592b4e6e04f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "46af5eece4595e8658920ddb272bdb42", "x-ms-return-client-request-id": "true" }, @@ -24,9 +24,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5c413215-010b-4188-a14e-fd5c32bd7b0b", + "apim-request-id": "c2eaa88f-8030-40e6-9e1d-54d10ed6c783", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 11 May 2021 16:08:27 GMT", + "Date": "Tue, 29 Jun 2021 19:09:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json index 65ca0c7ad8b7..c85360a5a071 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/languages?model-version=2019-10-01\u0026showStats=true", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/languages?model-version=2019-10-01\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6265634566192345befc145d728813e1-51531de7fdf51246-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-b0f4297872dcf6429717598b1e79fcd3-7fcf142c42f6744b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "acad3cc12aa10a7667d1533045b0a321", "x-ms-return-client-request-id": "true" }, @@ -39,10 +39,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "90e2c11f-55ba-4f63-8229-78eaa8a7803c", + "apim-request-id": "8c5d3c17-cbde-4fd1-8207-3fd5ef8b32d4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Tue, 11 May 2021 16:08:07 GMT", + "Date": "Tue, 29 Jun 2021 19:09:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json index b95f97cdb47a..388d10f6d3a4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/languages?model-version=2019-10-01\u0026showStats=true", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/languages?model-version=2019-10-01\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a221a8ace45cfa44a4cf2a0608bf4f24-b7ceced9ab18aa49-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-b39e112dfd32c4428a9d0b046e768b13-fa3be8a217dbc64a-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "50a7683e77aad92fe53b41b770dfa6fb", "x-ms-return-client-request-id": "true" }, @@ -39,14 +39,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2b3277f8-1c79-4eaa-9d1d-f022664638d4", + "apim-request-id": "46463cac-17db-47c5-8153-7216692bf62d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "Date": "Tue, 11 May 2021 16:08:27 GMT", + "Date": "Tue, 29 Jun 2021 19:09:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json index e70dcc37773c..fa97087ba4b5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/languages", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "82", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4bbda903f084644987e2b0069754eb93-f81b8fe629bcab43-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-adc2b2148facb84384b6207fb27cb357-6c67b9ebb050184d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7aaab163ed1d982c319bbad40483549a", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "28bcf66d-ffa8-4729-b47a-b69e838776dc", + "apim-request-id": "520910e0-2465-4a75-abf0-327e77c9a012", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:08:08 GMT", + "Date": "Tue, 29 Jun 2021 19:09:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "documents": [ 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 3d8e1b732600..fecc91b4140e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/languages", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "82", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c4afcb5c0299ff49b970b7aa21b02a5a-bcdfeb598d53114c-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-492669e2e6c6384da40112cbe8b27ed2-526c3928b77a084c-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d4cc6357ff58c85240bd64c6445c1d0f", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4c58cc55-012d-4ee9-8ad3-96df8ad9dccc", + "apim-request-id": "62e80c77-5346-4b7b-a1b5-a132e2e2e270", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:08:27 GMT", + "Date": "Tue, 29 Jun 2021 19:09:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json index c25cad5436e9..3ce6b75cbd98 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/languages", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "95", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-47ae48b9420d424086e5bfffe4029fae-c1d75e2b241f2c4e-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-473173f430af5348833c4e57bead5a6d-caf7e486fff1e44b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "98a2a27e9082d475805aa932800b5cf6", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5b32e879-cb63-4c62-9485-1a2fc6e28b7a", + "apim-request-id": "c7eaea6c-2123-464e-9820-40e3bb27bfe9", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:08:14 GMT", + "Date": "Tue, 29 Jun 2021 19:09:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json index e3cb44b7361d..39184ab0180b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/languages", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "95", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a34b3a4bd51466418549024ba48bb96f-99a5e9bd5d982d4c-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-d07342e952bdb640a8662764ecbcb5c8-928b40d8be010545-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f0760fc68cadb07ff1c89a4d1612c056", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "250f2031-dc5b-4bae-85a4-ed49730a4b33", + "apim-request-id": "4e1b9fc3-4bfd-4915-8665-a3797ed7fabb", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:08:29 GMT", + "Date": "Tue, 29 Jun 2021 19:09:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json index 217dd8e2ad77..c0ca6b844102 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/languages", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "101", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b58a74aa90f99d49abc2ddb2d86d124b-9f954e1f92615e4b-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-552553cd4c20194691451b30d9540d78-53dc7e1c79a65f40-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d6d037d3997433f0d1d408295081d2b0", "x-ms-return-client-request-id": "true" }, @@ -24,9 +24,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3601b14f-1a56-4813-b570-06cef281da5c", + "apim-request-id": "9b4d51aa-850b-4c76-b008-d916594510a2", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 11 May 2021 16:08:14 GMT", + "Date": "Tue, 29 Jun 2021 19:09:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json index 92ba5373aa0d..48ce70b3b80b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/languages", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "101", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-72a04a48fb988840906a1b692219f757-ca42917125588e4b-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-3113220c24bc9049a4566fc589aa4fa9-0a00cef8f5e34b4d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9d92baec240d7c0e78b80d24d8752359", "x-ms-return-client-request-id": "true" }, @@ -24,9 +24,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c660dd3d-46ea-4de0-9f9a-1135ffb84bad", + "apim-request-id": "5d6fc99c-0c92-4fad-bc74-47430e98c432", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 11 May 2021 16:08:29 GMT", + "Date": "Tue, 29 Jun 2021 19:09:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json index c199a54cf6ac..3b169342de78 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/languages", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-03d7c861fb681f489051f531f79f1127-b0b481295ef7d949-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-4f2bcc14b55d8144b6a774d5b1b7f22c-43a5533226322543-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9cded6f43daa9a1f5be8cb3934e1c44c", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e997ff58-c0f4-48b6-b44b-a95e23fcc002", + "apim-request-id": "f874ec09-7a86-43a3-8c03-aeee87c632be", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:08:16 GMT", + "Date": "Tue, 29 Jun 2021 19:09:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2516" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json index 3ec3cc66f8f1..3dde1eca3bef 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/languages", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2f2df8253d799c4aa901465a114ed558-5254c109baecee4b-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-e3a807e612aed84ba1383d0cf56f2b02-0cab92be9040c44e-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6124b40a04621bbacc815e287718638c", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d1fb0a48-fa95-4ced-9b20-e648e3d52056", + "apim-request-id": "ad9738fa-01bf-4ba5-a0da-a478307bd51a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:08:29 GMT", + "Date": "Tue, 29 Jun 2021 19:09:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json index c68c9bf3ce46..ff2cfd130470 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/languages", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-390cf1891b576f41be9038b5690e628a-6627570d2ef09542-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-c375ebe116698443b9140791d5cd0ebf-39fe8f4c6e709146-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dda057b9e217d2ba6e5090c17d8fd607", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "579678e1-3f90-4e23-b69d-365d682a353f", + "apim-request-id": "68713de8-eef6-4207-ad59-f4ab8cfffa90", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:08:16 GMT", + "Date": "Tue, 29 Jun 2021 19:09:58 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": "9" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json index fb0e04e787d9..3d8606f57036 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/languages", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-68dc2c0f9bf8c64aa59ea42824db4363-bdff833394701a44-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-2ecad6c06fc11547a2b31c4b959caf87-3a9f79fa92150540-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bfed051a0d9b7fe81f8b58b8ccb397c0", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "594eda37-ab04-45c3-b06a-b2304dbaac47", + "apim-request-id": "216d5ebd-da74-4936-b833-a66e511d3f67", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:08:29 GMT", + "Date": "Tue, 29 Jun 2021 19:09:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json index 82c775da7f07..2966e982444d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/keyPhrases?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e6dc22049aee5247bb9ef31bd1a640e2-276db353d0d88849-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-727b5df76ce77e4dbf42c610803414ea-928f7a4a37c43a4c-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "632e1038e2d2bd9cdcf3dd442e79c63c", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8e7c8a99-e9c1-4e17-9e07-47eb4e0e0d27", + "apim-request-id": "f5d88386-0e88-46f3-bfff-3dddc40429e1", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:08:29 GMT", + "Date": "Tue, 29 Jun 2021 19:09:59 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": "17" }, "ResponseBody": { "documents": [ @@ -52,15 +52,15 @@ { "id": "1", "keyPhrases": [ - "dog", "cat", + "dog", "veterinarian" ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2021-06-01" } } ], 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 47ab6b9abfaf..6e5e24c9c4c9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/keyPhrases?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0e6561ebab6ffe4ca94f9bff9336c748-72b11238768fd240-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-c54f5b6e98da534b82c231df37257d33-104b5ed52507a643-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bb6bf08839909e0e578d5bc1b428bcd2", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9c124e9b-7f73-47c1-ad51-e86f40d04a5b", + "apim-request-id": "25908137-101e-42ad-a4ef-72a1d0e6d444", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:08:31 GMT", + "Date": "Tue, 29 Jun 2021 19:10:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "documents": [ @@ -52,15 +52,15 @@ { "id": "1", "keyPhrases": [ - "dog", "cat", + "dog", "veterinarian" ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2021-06-01" } } ], 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 5eaa11851b97..793cf6d9c746 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/keyPhrases?showStats=true", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/keyPhrases?showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4ccbe902e5c6424bbbc9d68d12f5b81c-fef2b232d64b944f-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-589444b6e036e64da89fba09810870a4-733d9003c037e144-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4dfa2958a1568d79bc14e1b570d63d15", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a3f55281-b2a1-45d6-b792-d1fb958ab4ae", + "apim-request-id": "b22ef074-24f1-4d3a-b579-cb879bce7d8a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:08:29 GMT", + "Date": "Tue, 29 Jun 2021 19:09:59 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": "131" }, "ResponseBody": { "statistics": { @@ -62,8 +62,8 @@ { "id": "1", "keyPhrases": [ - "dog", "cat", + "dog", "veterinarian" ], "statistics": { @@ -74,7 +74,7 @@ } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2021-06-01" } } ], 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 263e2d903f8e..168095f5363d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/keyPhrases?showStats=true", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/keyPhrases?showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3d64c0f8882d684b9e4155b1056540fe-c5efd83bda88b148-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-dab169a383e82943a159fd80b681b484-0259d3a11eedc64a-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f8f1e114d697e804255315d1c7e9b6ab", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1b90aa26-dc83-4063-acd8-de6a39c8fe92", + "apim-request-id": "b1e76138-50e1-47b9-8594-11c627396b87", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:08:32 GMT", + "Date": "Tue, 29 Jun 2021 19:10: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-envoy-upstream-service-time": "17" }, "ResponseBody": { "statistics": { @@ -62,8 +62,8 @@ { "id": "1", "keyPhrases": [ - "dog", "cat", + "dog", "veterinarian" ], "statistics": { @@ -74,7 +74,7 @@ } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2021-06-01" } } ], 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 4ff534d22608..11a0ede4e9e0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/keyPhrases?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-53b1c67903a1d245be0bf78e7844930c-5392d097cd40f34f-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-8b91707588f1f54a90680476d07ca3e8-968b00c8fd9dbb48-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f8376358e18a19e0b7e6f893926ac745", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "edac979c-44bd-4457-a0dd-1a987cf5154a", + "apim-request-id": "5340e73a-904b-4b4f-b9c5-e8e8ac28a45e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:08:29 GMT", + "Date": "Tue, 29 Jun 2021 19:10:07 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": "7524" }, "ResponseBody": { "documents": [ @@ -52,15 +52,16 @@ { "id": "2", "keyPhrases": [ - "gato", + "Mi", "perro", + "gato", "veterinario" ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2021-06-01" } } ], 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 9ec4b2ce67e2..03d7e355273d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/keyPhrases?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c930f58c16429a4f8fe1a111677b71cf-e48f5c1be647714b-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-72e024009d6e60448f08753d0518d9c6-445fcfeabc584c4c-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "272edb015782fb6dbcae1cc2967deed3", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b7376dff-4979-4ea8-9157-d8c884f5566d", + "apim-request-id": "b97a1191-8b1f-476b-9304-01111c6f42f0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:08:32 GMT", + "Date": "Tue, 29 Jun 2021 19:10:08 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": "15" }, "ResponseBody": { "documents": [ @@ -52,15 +52,16 @@ { "id": "2", "keyPhrases": [ - "gato", + "Mi", "perro", + "gato", "veterinario" ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2021-06-01" } } ], 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 55e27dc6e962..70badba4b9c0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/keyPhrases?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1ca14397c3ce214aafde5e9465b742f9-aa1a8ca77a7a7644-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-3b3dac89a9fe69488bbc56db6785f550-07fc33f3faa7ed4c-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dd92af13693d6c6d10f5b45092a05fbe", "x-ms-return-client-request-id": "true" }, @@ -34,14 +34,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f140ad9f-781e-47c8-963a-4c9279993a32", + "apim-request-id": "0363c30c-7cc6-498f-84b0-84682a494d43", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:08:29 GMT", + "Date": "Tue, 29 Jun 2021 19:10:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "documents": [ @@ -76,7 +76,7 @@ } } ], - "modelVersion": "2020-07-01" + "modelVersion": "2021-06-01" } } ], 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 e660f6a07323..592058d53aba 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/keyPhrases?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4acb9ce6091a484c903e0c92ba744f94-0ccf62cef47ea443-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-2031c276d67a094fb8e9cd8f1ea3242c-8bfcc5673ceb5e4d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "161fb623980eba163f1211744629e747", "x-ms-return-client-request-id": "true" }, @@ -34,14 +34,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a7a79f03-d9ad-486a-848f-f032575c286b", + "apim-request-id": "154b206c-7abc-4574-b022-1ae7bbef118a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:08:32 GMT", + "Date": "Tue, 29 Jun 2021 19:10:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "documents": [ @@ -76,7 +76,7 @@ } } ], - "modelVersion": "2020-07-01" + "modelVersion": "2021-06-01" } } ], 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 0ee584d4cd83..385072f948a6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/keyPhrases?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-141f3459bb017542b4cb33e9792ebbae-6bee9d80d03e8d4f-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-31a1a458603fe4409b0fc10ce1837532-7e677a45a759ff46-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "02233abc1a851f8d7b73c3a9864f0660", "x-ms-return-client-request-id": "true" }, @@ -24,13 +24,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "17324f5b-7669-4560-8be4-4b43877a7e02", + "apim-request-id": "881e0a50-af0c-4f4b-970e-875236b37e74", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 11 May 2021 16:08:30 GMT", + "Date": "Tue, 29 Jun 2021 19:10:07 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": { 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 2ff565442488..b0b57bc9a8e6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/keyPhrases?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-01889f3c13da024b8136cef0bfeac376-583833ee88e4c546-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-973b646d339c264a9d429db7020f82a9-e287f214b2d6c947-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d3ffef96a22198e4e5a15a93f55c6a25", "x-ms-return-client-request-id": "true" }, @@ -24,13 +24,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "e7f7a6dd-cc7a-43d0-b9c1-3f524bfde642", + "apim-request-id": "628208a3-1980-488e-b81a-3541aa899626", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 11 May 2021 16:08:32 GMT", + "Date": "Tue, 29 Jun 2021 19:10:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json index 3facc107a0f9..62cd883e7a5c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/keyPhrases?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ea70527300152a43890325441fdf03d6-2fcf8407d1bde54e-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-eda55ca1ce1edd40b35e87839f0167bd-434fc638b7c95c41-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5bf1e93674612a2cd70f69188e2d39f7", "x-ms-return-client-request-id": "true" }, @@ -24,9 +24,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9e1d6619-ea79-4c3c-8f60-cca6ad452466", + "apim-request-id": "ccc1bee8-f457-47ea-a15a-2fac1ccbb91f", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 11 May 2021 16:08:30 GMT", + "Date": "Tue, 29 Jun 2021 19:10:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", @@ -47,7 +47,7 @@ } } ], - "modelVersion": "2020-07-01" + "modelVersion": "2021-06-01" } } ], 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 80554ea77563..d2115b27d8ca 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/keyPhrases?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9de2c9c702f73644a93fb2be4b4400f0-de86957d39bdf34c-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-b92712b1c1551046a60b4ef201c3013d-e5fbf1a451923c43-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5dbd36794559c388c50dd26e725f8f67", "x-ms-return-client-request-id": "true" }, @@ -24,9 +24,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b70e6127-83ab-4d3e-aafe-e54df4be1514", + "apim-request-id": "56d2a7ee-2162-4b64-b68a-f92e3efeac66", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 11 May 2021 16:08:32 GMT", + "Date": "Tue, 29 Jun 2021 19:10:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", @@ -47,7 +47,7 @@ } } ], - "modelVersion": "2020-07-01" + "modelVersion": "2021-06-01" } } ], 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 aeb6a25f319e..e579a5ae0a34 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/keyPhrases?showStats=true", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/keyPhrases?showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3ef6566a3c6d20408a6eef30e4c11aca-bea42e9807d95f48-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-aa5a7a7fe0df96428c40e4be5dd33b79-7507c433e2929547-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "481340828d769a0d6f19ecfe6b0d9666", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "790c3d66-f92d-462e-b1aa-2cf1db9203a6", + "apim-request-id": "7196970e-698f-4870-b414-77de98263b72", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:08:30 GMT", + "Date": "Tue, 29 Jun 2021 19:10:07 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": "15" }, "ResponseBody": { "statistics": { @@ -62,8 +62,9 @@ { "id": "2", "keyPhrases": [ - "gato", + "Mi", "perro", + "gato", "veterinario" ], "statistics": { @@ -74,7 +75,7 @@ } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2021-06-01" } } ], 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 736879bb340c..dc9af5dc6ad7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/keyPhrases?showStats=true", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/keyPhrases?showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e74c0f8fa12b4b4a854fd0c151cf9078-e3060a74152d4c4e-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-a48ef00c033cef4294df834d3e49f4ca-90879d7b9454784b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fcabdefd3d51a89852601fc0d61f3468", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "958aa341-a33e-4068-b381-538d612d97c3", + "apim-request-id": "27ae3399-3edd-4de0-a6dd-5fdcfdbd8ef0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:08:32 GMT", + "Date": "Tue, 29 Jun 2021 19:10:08 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": "172" }, "ResponseBody": { "statistics": { @@ -62,8 +62,9 @@ { "id": "2", "keyPhrases": [ - "gato", + "Mi", "perro", + "gato", "veterinario" ], "statistics": { @@ -74,7 +75,7 @@ } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2021-06-01" } } ], 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 83aa446c2a2b..deb47c87e865 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/keyPhrases", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "92", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b0a0c6f6b2fd1d4db664db8fb3c8658a-1eb63b437b7cfd42-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-5f0327e2bcdbcb48a3c921bda6868d6f-50c4adf3fac43a4b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b86575e1b38857965c8495535ac2b899", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d81b5109-776a-4d20-b14c-313bf9931a20", + "apim-request-id": "6fc38544-e5f4-43ea-b0ff-e3034c649383", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:08:30 GMT", + "Date": "Tue, 29 Jun 2021 19:10:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "documents": [ @@ -45,7 +45,7 @@ } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2021-06-01" } } ], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json index fd98eb95d884..9345ed8e0f59 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/keyPhrases", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "92", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3ad513134de7c54aa04b3065d60f4fec-db5a434fa704f948-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-873160f3906aae4e98f612761cde61f5-992a237ae29a9548-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f80f56a1c735d323972d5c2c674aed06", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5c5bffed-7690-411c-897a-5f995356f668", + "apim-request-id": "e7e705e8-a9b0-4d4a-8e2a-1a0f0bb66be2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:08:32 GMT", + "Date": "Tue, 29 Jun 2021 19:10: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-envoy-upstream-service-time": "15" }, "ResponseBody": { "documents": [ @@ -45,7 +45,7 @@ } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2021-06-01" } } ], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json index 7b070cd8583b..3754aee800f3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/keyPhrases", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "88", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-641571df6a66714fba6942bba21cf8a5-7c7e32df2697c243-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-cc0913febef1884ca1290775d615da62-e4995c5ed97b824e-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fee09dae9a1670151c1a3a802afd3e61", "x-ms-return-client-request-id": "true" }, @@ -24,10 +24,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e7b963f1-62ac-4557-aed2-fd31091a5d44", + "apim-request-id": "f0303877-0a18-4797-84cb-eccaa673388c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:08:31 GMT", + "Date": "Tue, 29 Jun 2021 19:10:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", @@ -45,7 +45,7 @@ } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2021-06-01" } } ], 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 4e86ca1fd2f6..c44f29854742 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/keyPhrases", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "88", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b250a5b0e524834289bee7fc8d8bafbd-12fc9de4c339dd4d-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-25777be694d0cb4089134aa7ba358280-c0352bb96773bf48-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3bfc775f82d23a381e7a3b00a0305c6c", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1b976ea5-4f48-4744-aae7-67e584b1d824", + "apim-request-id": "88139ce8-3dd7-4b62-b8e1-b9cf7ffa4412", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:08:33 GMT", + "Date": "Tue, 29 Jun 2021 19:10:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "documents": [ @@ -45,7 +45,7 @@ } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2021-06-01" } } ], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json index 656206802d43..acc5a2c0e807 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/keyPhrases?model-version=2020-07-01\u0026showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/keyPhrases?model-version=2020-07-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "180", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d4b8735b81de4842be22439442a1c9e1-0b1a9f0a7a93294a-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-07debd5dc625d84fb8c25befe1e682d9-8697761f38eba245-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7a99e78b28bbdc34334c788be87edcb8", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "07d4137b-4237-49fd-a57d-94e932f3ab90", + "apim-request-id": "aa5e4282-1586-4738-9742-acf6d97bd848", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Thu, 03 Jun 2021 18:07:24 GMT", + "Date": "Tue, 29 Jun 2021 19:10:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json index 475b6d768692..f4ae48b45615 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/keyPhrases?model-version=2020-07-01\u0026showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/keyPhrases?model-version=2020-07-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "180", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6b23c7b05b39ad4d80be28215cdc4d5d-f6ffaff40dc67345-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210603.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-e89d06f8d41e3040991035a6dab94887-89c89d4ecd5d444f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d687a16b6a26ea445556f8b3c125785e", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ab67812b-357f-4167-b7cc-27115d6d49be", + "apim-request-id": "5e161138-4850-4200-987b-58309302f1a8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Thu, 03 Jun 2021 18:07:24 GMT", + "Date": "Tue, 29 Jun 2021 19:10:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json index d0af31e1f48d..1c6b48eb1bc7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ca5ae8f20e16a243afba9a8ef67c59b7-dcc71580f0d10841-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-d47846a79a76f0418906dd08e43d073b-d8cc537454c3dc42-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "73b99494ac5a2b6a48730fa6d4bda24b", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "87c26401-9cfd-4de8-98bb-3152ff5e7c7e", + "apim-request-id": "9fbe8bcc-edf7-4419-a138-e8ed3791f5d7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:08:33 GMT", + "Date": "Tue, 29 Jun 2021 19:10:09 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": "25" }, "ResponseBody": { "documents": [ @@ -48,7 +48,7 @@ "category": "Organization", "offset": 0, "length": 9, - "confidenceScore": 0.97 + "confidenceScore": 1.0 }, { "text": "Bill Gates", @@ -62,7 +62,7 @@ "category": "Person", "offset": 40, "length": 10, - "confidenceScore": 0.99 + "confidenceScore": 1.0 } ], "warnings": [] @@ -75,14 +75,14 @@ "category": "PersonType", "offset": 38, "length": 12, - "confidenceScore": 0.98 + "confidenceScore": 1.0 } ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], 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 cfa3678a8a67..96df27933b7f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-01d6fed5e8da624c8db6dfc896269f8d-c445ec7f51d48949-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-dd967cca40296742891be37b36143387-2d8db6b7e9171c4b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d2ffe8a9cd41c6a7f7eddf3ba0def75e", "x-ms-return-client-request-id": "true" }, @@ -29,10 +29,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3a936f4f-b867-472c-939d-ada05dd10d8a", + "apim-request-id": "58823193-2c3a-4481-9d93-27f3e64397fa", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:08:37 GMT", + "Date": "Tue, 29 Jun 2021 19:10:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", @@ -48,7 +48,7 @@ "category": "Organization", "offset": 0, "length": 9, - "confidenceScore": 0.97 + "confidenceScore": 1.0 }, { "text": "Bill Gates", @@ -62,7 +62,7 @@ "category": "Person", "offset": 40, "length": 10, - "confidenceScore": 0.99 + "confidenceScore": 1.0 } ], "warnings": [] @@ -75,14 +75,14 @@ "category": "PersonType", "offset": 38, "length": 12, - "confidenceScore": 0.98 + "confidenceScore": 1.0 } ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], 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 d61ab6948774..a25be7bbd96b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-27f4eaa27dcb974985e094496ef0f935-6fb1871d78eebd4e-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-1de03ea70997fd499e580aa39b4a4034-325a77014c829b44-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "67616e684f8b043d1e0c71e939770f42", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c587e27e-ebaa-4d47-9dfa-579b2c9aecff", + "apim-request-id": "abae2de3-99c1-4498-8ec4-2c60bfe2e23d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:08:34 GMT", + "Date": "Tue, 29 Jun 2021 19:10:09 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": "27" }, "ResponseBody": { "statistics": { @@ -58,7 +58,7 @@ "category": "Organization", "offset": 0, "length": 9, - "confidenceScore": 0.97 + "confidenceScore": 1.0 }, { "text": "Bill Gates", @@ -72,7 +72,7 @@ "category": "Person", "offset": 40, "length": 10, - "confidenceScore": 0.99 + "confidenceScore": 1.0 } ], "warnings": [] @@ -89,14 +89,14 @@ "category": "PersonType", "offset": 38, "length": 12, - "confidenceScore": 0.98 + "confidenceScore": 1.0 } ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], 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 5d51ed798e3b..75258849ee43 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7cc271423898f545970273ed00316a3e-d659bbe8fac14949-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-f14df15e6defec47830d3fe3a9c44cb5-3a11e4425d404c4c-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3d6191fdfe339ad3e9a9a23dfab389e2", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "efe6ed75-c1bc-45a7-8592-79ee10a50bb0", + "apim-request-id": "8fa205a5-a94f-4a92-9399-e706cbfe58cf", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:08:37 GMT", + "Date": "Tue, 29 Jun 2021 19:10:15 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": "26" }, "ResponseBody": { "statistics": { @@ -58,7 +58,7 @@ "category": "Organization", "offset": 0, "length": 9, - "confidenceScore": 0.97 + "confidenceScore": 1.0 }, { "text": "Bill Gates", @@ -72,7 +72,7 @@ "category": "Person", "offset": 40, "length": 10, - "confidenceScore": 0.99 + "confidenceScore": 1.0 } ], "warnings": [] @@ -89,14 +89,14 @@ "category": "PersonType", "offset": 38, "length": 12, - "confidenceScore": 0.98 + "confidenceScore": 1.0 } ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], 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 6fd975522529..759bac49dd68 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "190", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-14bf50c28cb2a746bfe442c3112e6566-96ed027a241df74c-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-eff838791cc0ea4ea2f0b33ee7c6b45f-d33f9cd01e07d445-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c2e6195c0f4c89c31e4ed8101a9fceeb", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d051ab01-25d7-4471-a526-feed97798562", + "apim-request-id": "1d26ede9-9728-4345-8a8a-28d15a5d36eb", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:08:34 GMT", + "Date": "Tue, 29 Jun 2021 19:10:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "documents": [ @@ -48,7 +48,7 @@ "category": "Organization", "offset": 0, "length": 9, - "confidenceScore": 0.97 + "confidenceScore": 1.0 }, { "text": "Bill Gates", @@ -62,7 +62,7 @@ "category": "Person", "offset": 40, "length": 10, - "confidenceScore": 0.99 + "confidenceScore": 1.0 } ], "warnings": [] @@ -75,14 +75,14 @@ "category": "Organization", "offset": 0, "length": 9, - "confidenceScore": 0.97 + "confidenceScore": 1.0 }, { "text": "Bill Gates", "category": "Person", "offset": 26, "length": 10, - "confidenceScore": 0.99 + "confidenceScore": 1.0 }, { "text": "Paul Allen", @@ -96,7 +96,7 @@ } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], 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 09962b1fa914..082e9dce2bf7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "190", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2ec4d96b3730324d8b94eb740257e0fd-756a4cbec1648e4a-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-1d893b643f052a4ca0fe6cc9b99f40fb-6475e7b7b5408240-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "74826ca03adf5e0230955bc11a73f253", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "817553dc-ac1d-466b-9dc8-909786176311", + "apim-request-id": "5ebe03c6-81bf-4383-8e02-73989009c9b2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:08:37 GMT", + "Date": "Tue, 29 Jun 2021 19:10:15 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": "26" }, "ResponseBody": { "documents": [ @@ -48,7 +48,7 @@ "category": "Organization", "offset": 0, "length": 9, - "confidenceScore": 0.97 + "confidenceScore": 1.0 }, { "text": "Bill Gates", @@ -62,7 +62,7 @@ "category": "Person", "offset": 40, "length": 10, - "confidenceScore": 0.99 + "confidenceScore": 1.0 } ], "warnings": [] @@ -75,14 +75,14 @@ "category": "Organization", "offset": 0, "length": 9, - "confidenceScore": 0.97 + "confidenceScore": 1.0 }, { "text": "Bill Gates", "category": "Person", "offset": 26, "length": 10, - "confidenceScore": 0.99 + "confidenceScore": 1.0 }, { "text": "Paul Allen", @@ -96,7 +96,7 @@ } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], 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 fad5ffe6b350..dcd4a41639c9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6bb1e08bd908524f9fd4986d8a71ddab-3bd55644eab7634d-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-6d1d9301a6432e439362a6fea6caea22-74da466872ed1b4c-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e1ab51bf64c496574b45aba2614e8e70", "x-ms-return-client-request-id": "true" }, @@ -34,14 +34,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9e19f3b8-d036-48ca-b43b-f48eb520c485", + "apim-request-id": "c943652f-e6a1-43c6-8e3f-4aecc738e094", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:08:34 GMT", + "Date": "Tue, 29 Jun 2021 19:10:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "documents": [ @@ -53,7 +53,7 @@ "category": "Organization", "offset": 0, "length": 9, - "confidenceScore": 0.97 + "confidenceScore": 1.0 }, { "text": "Bill Gates", @@ -67,7 +67,7 @@ "category": "Person", "offset": 40, "length": 10, - "confidenceScore": 0.99 + "confidenceScore": 1.0 } ], "warnings": [] @@ -80,7 +80,7 @@ "category": "PersonType", "offset": 27, "length": 12, - "confidenceScore": 0.98 + "confidenceScore": 1.0 } ], "warnings": [] @@ -99,7 +99,7 @@ } } ], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], 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 e22632001e33..ca76b249e652 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b9c3e4caf7681742b1294f55d44d8e6f-677f2c0303d2ab4e-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-e466de054c6c1e40a8b876ca9989da3c-6639a238a197ec4e-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d8b08f95484a0406f97f2f7420372c35", "x-ms-return-client-request-id": "true" }, @@ -34,14 +34,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eca2239a-81b7-4955-b389-85a661bfed37", + "apim-request-id": "d04758f7-21a7-4ec9-b2e0-24e60763f70a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:08:38 GMT", + "Date": "Tue, 29 Jun 2021 19:10:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "documents": [ @@ -53,7 +53,7 @@ "category": "Organization", "offset": 0, "length": 9, - "confidenceScore": 0.97 + "confidenceScore": 1.0 }, { "text": "Bill Gates", @@ -67,7 +67,7 @@ "category": "Person", "offset": 40, "length": 10, - "confidenceScore": 0.99 + "confidenceScore": 1.0 } ], "warnings": [] @@ -80,7 +80,7 @@ "category": "PersonType", "offset": 27, "length": 12, - "confidenceScore": 0.98 + "confidenceScore": 1.0 } ], "warnings": [] @@ -99,7 +99,7 @@ } } ], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], 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 f47fa9c96cbd..034c1fe254df 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "297", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d5fe1f08ce175246b395e1b358d81c14-dda211f5c654a04c-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-1e52ba9a4e920c4287ebeb3e8ed8be96-109c89d5eb10c147-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a8ae17c802a6c3ea068b7f13c73b934a", "x-ms-return-client-request-id": "true" }, @@ -49,13 +49,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "15684c72-3670-45a2-ad9e-f2e2a9170b82", + "apim-request-id": "93685509-dc88-4193-a540-60c7fa706f60", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 11 May 2021 16:08:34 GMT", + "Date": "Tue, 29 Jun 2021 19:10:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json index aeb737bc5d8a..3c0e371d1be5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "297", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2027403d784f1944a7e4e816a34c06a1-0803235189e6154e-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-3e8442cee4dd384a969fe3272e32907a-acf6bb1404ce0740-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "28b544e5b9a5cf3535ddef0fb0fd1d43", "x-ms-return-client-request-id": "true" }, @@ -49,13 +49,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "ad2a8005-fda8-40b9-87e0-7898d4e93a22", + "apim-request-id": "f9c50c31-88f3-4065-9f8a-66f3b23353ce", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 11 May 2021 16:08:38 GMT", + "Date": "Tue, 29 Jun 2021 19:10:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json index 86b8e8e0b820..0503c9260393 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-12845bff983d134bb9149b91c29d1cbf-04ab1c10c26beb4f-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-d3ce42796941ab43ab84d80c49f6bf17-86ad9ace69ee3b4e-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0394cc79836b8e2a0617730333d293ff", "x-ms-return-client-request-id": "true" }, @@ -24,13 +24,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "f237d3e4-0618-4208-abc2-357ba84d27b0", + "apim-request-id": "5038efe3-f030-4b7d-8ec9-8b04880dca5e", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 11 May 2021 16:08:34 GMT", + "Date": "Tue, 29 Jun 2021 19:10:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json index d43f081071cf..fc899c3f6b00 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e97d898b588630448ccc445417e4061f-f380a338ebb53a4d-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-f537507b5d4943478ce69220ef96ebdd-5f4e07790d741a41-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d2a606a042fa292271e9e0fd82e50d07", "x-ms-return-client-request-id": "true" }, @@ -24,9 +24,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "6d2e998e-d3f1-4257-8340-b5f40577617d", + "apim-request-id": "534285c3-70b2-40d6-a498-5d8a503d1508", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 11 May 2021 16:08:38 GMT", + "Date": "Tue, 29 Jun 2021 19:10:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json index a547cbffb52b..9e9016ecc9e7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-74eb53c5fb1d7b4090dbddd1b6483ec0-a85c27dd32fddc4d-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-7e3345c1aaf3dd43812d11c0cf021b99-b3a636617d7baf4b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "143a14bc880cd41cfe9c98287e990fb6", "x-ms-return-client-request-id": "true" }, @@ -24,13 +24,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "00112e33-8452-4cfe-a13b-ed6b4c5212fe", + "apim-request-id": "f3c86289-7df5-4ba4-a4b8-3f14cdf25c5f", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 11 May 2021 16:08:34 GMT", + "Date": "Tue, 29 Jun 2021 19:10:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "1" }, "ResponseBody": { "documents": [], @@ -47,7 +47,7 @@ } } ], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], 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 902fa67144ec..d72e0175bbf4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6c4e069a90495844999c6b16646c3320-d8d590451cbe8847-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-7e0ec6ec4930f84792743de8004e2622-bc3dc66fd281744e-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7afea088ca0a22de1ccfe4f56367e3ca", "x-ms-return-client-request-id": "true" }, @@ -24,13 +24,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b3a3a8f9-7068-41d9-b105-d22c6e974484", + "apim-request-id": "ade584a1-ee9c-42fc-ad98-9026cb98fdaf", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 11 May 2021 16:08:38 GMT", + "Date": "Tue, 29 Jun 2021 19:10:16 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": "3" }, "ResponseBody": { "documents": [], @@ -47,7 +47,7 @@ } } ], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], 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 2f559a621543..8d580a9b5dee 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "190", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-16ecbb0d7261d747ba193e46bbda744b-753a782664870843-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-294ada7ddf7a7f43ae7fe8b5cd3b0ec1-7186c0a3e9932142-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3c7b09ea57a0a9f84c938c05ff06e377", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c281cd53-92a6-44b6-9025-5998ebe412fc", + "apim-request-id": "f9f74059-b063-4437-97f8-cf4092a18ee0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:08:35 GMT", + "Date": "Tue, 29 Jun 2021 19:10:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "34" }, "ResponseBody": { "statistics": { @@ -58,7 +58,7 @@ "category": "Organization", "offset": 0, "length": 9, - "confidenceScore": 0.97 + "confidenceScore": 1.0 }, { "text": "Bill Gates", @@ -72,7 +72,7 @@ "category": "Person", "offset": 40, "length": 10, - "confidenceScore": 0.99 + "confidenceScore": 1.0 } ], "warnings": [] @@ -89,14 +89,14 @@ "category": "Organization", "offset": 0, "length": 9, - "confidenceScore": 0.97 + "confidenceScore": 1.0 }, { "text": "Bill Gates", "category": "Person", "offset": 26, "length": 10, - "confidenceScore": 0.99 + "confidenceScore": 1.0 }, { "text": "Paul Allen", @@ -110,7 +110,7 @@ } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], 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 982bbc44efdf..ebd8f2299c87 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "190", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e6d76c6b70f3f24e95fc607dde8ad96b-e9899f588d91fc48-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-4f52c084ce0e4949a393360f9ce55462-f342b67b6904a243-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c386dc48f454868243af3522ce69cb86", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4d31e80a-3129-4102-918f-e8810f0ac560", + "apim-request-id": "4e010715-defc-4826-97a6-f141f822b604", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:08:38 GMT", + "Date": "Tue, 29 Jun 2021 19:10:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "statistics": { @@ -58,7 +58,7 @@ "category": "Organization", "offset": 0, "length": 9, - "confidenceScore": 0.97 + "confidenceScore": 1.0 }, { "text": "Bill Gates", @@ -72,7 +72,7 @@ "category": "Person", "offset": 40, "length": 10, - "confidenceScore": 0.99 + "confidenceScore": 1.0 } ], "warnings": [] @@ -89,14 +89,14 @@ "category": "Organization", "offset": 0, "length": 9, - "confidenceScore": 0.97 + "confidenceScore": 1.0 }, { "text": "Bill Gates", "category": "Person", "offset": 26, "length": 10, - "confidenceScore": 0.99 + "confidenceScore": 1.0 }, { "text": "Paul Allen", @@ -110,7 +110,7 @@ } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], 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 c39764069138..5b6131e2737d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ab53ea67af00c34fa8e79fa33e5c65a1-a9d1b732f1c44042-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-d7ba7e0dc99fe24cacf7951b7e6d46ff-01c4109e91b6c548-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "483a789eb74f49281b818c10882907cc", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c5015b05-412b-4503-9490-845eceb45a44", + "apim-request-id": "85240fd7-fecc-4588-959f-e42e4f76d3c1", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:08:35 GMT", + "Date": "Tue, 29 Jun 2021 19:10:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "documents": [ @@ -43,7 +43,7 @@ "category": "Organization", "offset": 0, "length": 9, - "confidenceScore": 0.97 + "confidenceScore": 1.0 }, { "text": "Bill Gates", @@ -57,14 +57,14 @@ "category": "Person", "offset": 40, "length": 10, - "confidenceScore": 0.99 + "confidenceScore": 1.0 } ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json index d4914c616a9a..5015ed40df5f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7f84a1e126245e4b8a59dc03bee23c39-86a2e3abb2e1cf45-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-0ef18e14d9186047833e58afac034228-c3a5a7ed820d614d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "700659f3fdefe683be90e2b1951eb421", "x-ms-return-client-request-id": "true" }, @@ -24,10 +24,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e659cec8-830e-4abf-aebd-18b7967a57f2", + "apim-request-id": "c7dd4058-0555-499e-9572-7da04987bf0b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:08:38 GMT", + "Date": "Tue, 29 Jun 2021 19:10:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", @@ -43,7 +43,7 @@ "category": "Organization", "offset": 0, "length": 9, - "confidenceScore": 0.97 + "confidenceScore": 1.0 }, { "text": "Bill Gates", @@ -57,14 +57,14 @@ "category": "Person", "offset": 40, "length": 10, - "confidenceScore": 0.99 + "confidenceScore": 1.0 } ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json index fee244895f67..e927edb815e7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-206f2425a8f6fd4ab041b487008b0368-32e1ad907c8a3e49-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-f00f0a374f6ab54683f1a87842746825-2279f09475836544-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fb4827053b6a1252c3b25be970bef0ff", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f67dfc03-db12-4cda-8ea3-f8c039a59ceb", + "apim-request-id": "07ffdebd-19ac-45e3-8fcd-6f2a76c14144", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:08:36 GMT", + "Date": "Tue, 29 Jun 2021 19:10:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "documents": [ @@ -43,14 +43,14 @@ "category": "Organization", "offset": 0, "length": 9, - "confidenceScore": 0.97 + "confidenceScore": 1.0 }, { "text": "Bill Gates", "category": "Person", "offset": 26, "length": 10, - "confidenceScore": 0.99 + "confidenceScore": 1.0 }, { "text": "Paul Allen", @@ -64,7 +64,7 @@ } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], 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 d0ebf786fcd0..e10ccacd5850 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0a97b9f6751e9147a00fecda99922894-14d748b76e3a244c-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-ea8a4a2a13ad3d4eb6a1efdb11e86707-36903b0ee655e441-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b55082b33b1fe734efdcbb82c7c8a31b", "x-ms-return-client-request-id": "true" }, @@ -24,10 +24,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "189edb36-bc48-463e-ae04-8357f966288f", + "apim-request-id": "90e0f1c0-fd42-467d-b0f5-261f5c9bf829", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:08:40 GMT", + "Date": "Tue, 29 Jun 2021 19:10:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", @@ -43,14 +43,14 @@ "category": "Organization", "offset": 0, "length": 9, - "confidenceScore": 0.97 + "confidenceScore": 1.0 }, { "text": "Bill Gates", "category": "Person", "offset": 26, "length": 10, - "confidenceScore": 0.99 + "confidenceScore": 1.0 }, { "text": "Paul Allen", @@ -64,7 +64,7 @@ } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], 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 ea57978188cf..c9be023fda05 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/general?model-version=2020-04-01\u0026showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/general?model-version=2020-04-01\u0026showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a9f8731d3872694380f65ae344caaee4-e91e83c1d7020a45-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-801e28fc14ec3e4b984535093f382512-51d691791592554f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c580665e455e125e80a821d61e9c3c18", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2df65e6c-5440-413c-af8f-b5b9fc5b8ef9", + "apim-request-id": "4ad54712-addf-42de-834c-7b8e883bd0dd", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:08:37 GMT", + "Date": "Tue, 29 Jun 2021 19:10:15 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": "5027" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json index 72eb6bffa780..8522dc5943c3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/general?model-version=2020-04-01\u0026showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/general?model-version=2020-04-01\u0026showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d09bd367bbd1d34da50849b09682c912-2d15a0985e01d141-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-2cc360eae19843419b8b266997c4b9f2-9321f03cb5577844-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3b4b745166e69035ddd947884a09aa87", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fb6b0926-d79d-4ce9-b048-f5b07bab38d6", + "apim-request-id": "ff0a2237-49bd-4ea3-a14d-6087f9f1a8a5", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:08:40 GMT", + "Date": "Tue, 29 Jun 2021 19:10:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "81" + "x-envoy-upstream-service-time": "2593" }, "ResponseBody": { "documents": [ 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 1d923016f3be..90dbc7373cdb 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-36a2d72ea227a046ac944dd32c096dcf-86fa2d62691bbd45-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-2468693d5993df48967b6a997d6fb185-b359a90b2f75d741-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d518e71fb8bbde791a4a8e2d519abd2d", "x-ms-return-client-request-id": "true" }, @@ -29,342 +29,432 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "f24bbeed-f3cf-4c24-9384-0bd53457c566", - "Date": "Fri, 14 May 2021 17:27:36 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/741adac0-6edc-4b8c-b855-e8bade8514c5", + "apim-request-id": "94a049fa-0f3c-4425-915c-d92c5db955e8", + "Date": "Tue, 29 Jun 2021 19:10:19 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/520d7a91-3473-4561-aba3-9f7c549a6b7d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "164" + "x-envoy-upstream-service-time": "174" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/741adac0-6edc-4b8c-b855-e8bade8514c5?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/520d7a91-3473-4561-aba3-9f7c549a6b7d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "15392559dddf00be7c02b37db1655d5f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fe99203d-6162-407e-b532-fea20f19c2db", + "apim-request-id": "ff4697a9-5abb-4414-a815-216834dbb9f6", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:27:37 GMT", + "Date": "Tue, 29 Jun 2021 19:10:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "741adac0-6edc-4b8c-b855-e8bade8514c5", - "lastUpdateDateTime": "2021-05-14T17:27:37Z", - "createdDateTime": "2021-05-14T17:27:37Z", - "expirationDateTime": "2021-05-15T17:27:37Z", + "jobId": "520d7a91-3473-4561-aba3-9f7c549a6b7d", + "lastUpdateDateTime": "2021-06-29T19:10:19Z", + "createdDateTime": "2021-06-29T19:10:19Z", + "expirationDateTime": "2021-06-30T19:10:19Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/741adac0-6edc-4b8c-b855-e8bade8514c5?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/520d7a91-3473-4561-aba3-9f7c549a6b7d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8fbb3015ae7667cee796b09df47c3a1a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6bd73f46-c526-4c3f-b1f1-1e9e131914f0", + "apim-request-id": "b7c547a7-a797-41e6-a9c2-f9a671ddaeba", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:27:38 GMT", + "Date": "Tue, 29 Jun 2021 19:10:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { - "jobId": "741adac0-6edc-4b8c-b855-e8bade8514c5", - "lastUpdateDateTime": "2021-05-14T17:27:37Z", - "createdDateTime": "2021-05-14T17:27:37Z", - "expirationDateTime": "2021-05-15T17:27:37Z", + "jobId": "520d7a91-3473-4561-aba3-9f7c549a6b7d", + "lastUpdateDateTime": "2021-06-29T19:10:19Z", + "createdDateTime": "2021-06-29T19:10:19Z", + "expirationDateTime": "2021-06-30T19:10:19Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/741adac0-6edc-4b8c-b855-e8bade8514c5?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/520d7a91-3473-4561-aba3-9f7c549a6b7d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9ca689c8d08e41aa291759b905fb2cb5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2504d855-8497-4acf-ba91-2e8083f6b99d", + "apim-request-id": "b8c3872e-def2-46e7-93a6-eb479afb3c2f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:27:39 GMT", + "Date": "Tue, 29 Jun 2021 19:10:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "741adac0-6edc-4b8c-b855-e8bade8514c5", - "lastUpdateDateTime": "2021-05-14T17:27:37Z", - "createdDateTime": "2021-05-14T17:27:37Z", - "expirationDateTime": "2021-05-15T17:27:37Z", + "jobId": "520d7a91-3473-4561-aba3-9f7c549a6b7d", + "lastUpdateDateTime": "2021-06-29T19:10:19Z", + "createdDateTime": "2021-06-29T19:10:19Z", + "expirationDateTime": "2021-06-30T19:10:19Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/741adac0-6edc-4b8c-b855-e8bade8514c5?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/520d7a91-3473-4561-aba3-9f7c549a6b7d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "20182fec2ddfaab657d22e482d200cff", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "106b5f12-9271-4f5f-adc2-a800851b8c99", + "apim-request-id": "69809ee9-135d-402d-8513-65fb04e0786c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:27:40 GMT", + "Date": "Tue, 29 Jun 2021 19:10:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "741adac0-6edc-4b8c-b855-e8bade8514c5", - "lastUpdateDateTime": "2021-05-14T17:27:37Z", - "createdDateTime": "2021-05-14T17:27:37Z", - "expirationDateTime": "2021-05-15T17:27:37Z", - "status": "notStarted", + "jobId": "520d7a91-3473-4561-aba3-9f7c549a6b7d", + "lastUpdateDateTime": "2021-06-29T19:10:22Z", + "createdDateTime": "2021-06-29T19:10:19Z", + "expirationDateTime": "2021-06-30T19:10:19Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/741adac0-6edc-4b8c-b855-e8bade8514c5?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/520d7a91-3473-4561-aba3-9f7c549a6b7d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "28b599c8c1be45d08679665f551561eb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c429ee9f-dae6-4c3d-98f2-aea3b459a6b8", + "apim-request-id": "1c63bc3d-09c1-4762-b5c4-4376baaf2051", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:27:41 GMT", + "Date": "Tue, 29 Jun 2021 19:10: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": "741adac0-6edc-4b8c-b855-e8bade8514c5", - "lastUpdateDateTime": "2021-05-14T17:27:37Z", - "createdDateTime": "2021-05-14T17:27:37Z", - "expirationDateTime": "2021-05-15T17:27:37Z", - "status": "notStarted", + "jobId": "520d7a91-3473-4561-aba3-9f7c549a6b7d", + "lastUpdateDateTime": "2021-06-29T19:10:22Z", + "createdDateTime": "2021-06-29T19:10:19Z", + "expirationDateTime": "2021-06-30T19:10:19Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/741adac0-6edc-4b8c-b855-e8bade8514c5?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/520d7a91-3473-4561-aba3-9f7c549a6b7d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c4b0fb6a19639a3ad3fb44bca1611408", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "110782d7-1fcf-4d76-b426-76a3d90ed0cc", + "apim-request-id": "9d3474e8-8ea6-4370-b142-e70dab76fde0", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:27:42 GMT", + "Date": "Tue, 29 Jun 2021 19:10:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { - "jobId": "741adac0-6edc-4b8c-b855-e8bade8514c5", - "lastUpdateDateTime": "2021-05-14T17:27:37Z", - "createdDateTime": "2021-05-14T17:27:37Z", - "expirationDateTime": "2021-05-15T17:27:37Z", - "status": "notStarted", + "jobId": "520d7a91-3473-4561-aba3-9f7c549a6b7d", + "lastUpdateDateTime": "2021-06-29T19:10:22Z", + "createdDateTime": "2021-06-29T19:10:19Z", + "expirationDateTime": "2021-06-30T19:10:19Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/741adac0-6edc-4b8c-b855-e8bade8514c5?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/520d7a91-3473-4561-aba3-9f7c549a6b7d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6cf0590b03462bf65fd29a65c7575542", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7fd8d65c-ab25-4052-b903-0aa92aac5cca", + "apim-request-id": "954bdee8-5f72-44e7-87f4-057747dbb7ba", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:27:43 GMT", + "Date": "Tue, 29 Jun 2021 19:10: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": "741adac0-6edc-4b8c-b855-e8bade8514c5", - "lastUpdateDateTime": "2021-05-14T17:27:37Z", - "createdDateTime": "2021-05-14T17:27:37Z", - "expirationDateTime": "2021-05-15T17:27:37Z", - "status": "notStarted", + "jobId": "520d7a91-3473-4561-aba3-9f7c549a6b7d", + "lastUpdateDateTime": "2021-06-29T19:10:22Z", + "createdDateTime": "2021-06-29T19:10:19Z", + "expirationDateTime": "2021-06-30T19:10:19Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/741adac0-6edc-4b8c-b855-e8bade8514c5?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/520d7a91-3473-4561-aba3-9f7c549a6b7d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "31dd4370476fae9b5e1a55c27d13a324", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "25c8ec8b-cb6a-41d6-a2e8-e65b8cf2ff76", + "apim-request-id": "1a5813fb-9574-4414-95b7-02c3d6bd1a68", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:27:44 GMT", + "Date": "Tue, 29 Jun 2021 19:10: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": "7" }, "ResponseBody": { - "jobId": "741adac0-6edc-4b8c-b855-e8bade8514c5", - "lastUpdateDateTime": "2021-05-14T17:27:37Z", - "createdDateTime": "2021-05-14T17:27:37Z", - "expirationDateTime": "2021-05-15T17:27:37Z", - "status": "notStarted", + "jobId": "520d7a91-3473-4561-aba3-9f7c549a6b7d", + "lastUpdateDateTime": "2021-06-29T19:10:22Z", + "createdDateTime": "2021-06-29T19:10:19Z", + "expirationDateTime": "2021-06-30T19:10:19Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/741adac0-6edc-4b8c-b855-e8bade8514c5?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/520d7a91-3473-4561-aba3-9f7c549a6b7d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fb535e64f42466a4048565917fd4d37b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ede16f0d-c1b1-46d3-b881-8a6aa0abc13d", + "apim-request-id": "4b6bcf7a-585c-49ac-a7d4-de48513d6d14", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:27:45 GMT", + "Date": "Tue, 29 Jun 2021 19:10: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": "6" }, "ResponseBody": { - "jobId": "741adac0-6edc-4b8c-b855-e8bade8514c5", - "lastUpdateDateTime": "2021-05-14T17:27:37Z", - "createdDateTime": "2021-05-14T17:27:37Z", - "expirationDateTime": "2021-05-15T17:27:37Z", - "status": "notStarted", + "jobId": "520d7a91-3473-4561-aba3-9f7c549a6b7d", + "lastUpdateDateTime": "2021-06-29T19:10:22Z", + "createdDateTime": "2021-06-29T19:10:19Z", + "expirationDateTime": "2021-06-30T19:10:19Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/741adac0-6edc-4b8c-b855-e8bade8514c5?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/520d7a91-3473-4561-aba3-9f7c549a6b7d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5e4c01a5e384c398bd420e2bae33ae4b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c1c9a81f-a06c-4c72-b442-fbec3b987900", + "apim-request-id": "154956e5-df8c-4a29-a0ed-412e214b27e8", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:27:46 GMT", + "Date": "Tue, 29 Jun 2021 19:10: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": "741adac0-6edc-4b8c-b855-e8bade8514c5", - "lastUpdateDateTime": "2021-05-14T17:27:37Z", - "createdDateTime": "2021-05-14T17:27:37Z", - "expirationDateTime": "2021-05-15T17:27:37Z", - "status": "notStarted", + "jobId": "520d7a91-3473-4561-aba3-9f7c549a6b7d", + "lastUpdateDateTime": "2021-06-29T19:10:22Z", + "createdDateTime": "2021-06-29T19:10:19Z", + "expirationDateTime": "2021-06-30T19:10:19Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/741adac0-6edc-4b8c-b855-e8bade8514c5?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/520d7a91-3473-4561-aba3-9f7c549a6b7d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6801762e5a037b1e9f772deae20a2f89", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5ca5348a-5a3f-41de-906d-7d25a8483a54", + "apim-request-id": "0549f457-ef46-4571-b187-a9690668b768", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:10: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": "520d7a91-3473-4561-aba3-9f7c549a6b7d", + "lastUpdateDateTime": "2021-06-29T19:10:22Z", + "createdDateTime": "2021-06-29T19:10:19Z", + "expirationDateTime": "2021-06-30T19:10:19Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/520d7a91-3473-4561-aba3-9f7c549a6b7d?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7b1dd94745c781a0c58f3de1e678b8d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "42d3e186-9dc4-4a15-abb1-9e93c15e145d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:10: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": "520d7a91-3473-4561-aba3-9f7c549a6b7d", + "lastUpdateDateTime": "2021-06-29T19:10:22Z", + "createdDateTime": "2021-06-29T19:10:19Z", + "expirationDateTime": "2021-06-30T19:10:19Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/520d7a91-3473-4561-aba3-9f7c549a6b7d?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "096219d66ad34b78e3d0be0db5aee1b3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "53d01b7f-bad9-43af-bf7e-7be7ac62c02c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:27:53 GMT", + "Date": "Tue, 29 Jun 2021 19:10:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5125" + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { - "jobId": "741adac0-6edc-4b8c-b855-e8bade8514c5", - "lastUpdateDateTime": "2021-05-14T17:27:48Z", - "createdDateTime": "2021-05-14T17:27:37Z", - "expirationDateTime": "2021-05-15T17:27:37Z", + "jobId": "520d7a91-3473-4561-aba3-9f7c549a6b7d", + "lastUpdateDateTime": "2021-06-29T19:10:22Z", + "createdDateTime": "2021-06-29T19:10:19Z", + "expirationDateTime": "2021-06-30T19:10:19Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/520d7a91-3473-4561-aba3-9f7c549a6b7d?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d4e485133316e984d57fa3741d3c9526", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ad0fedce-4f89-4daa-8ef1-603ce7adcfdd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:10:33 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": "520d7a91-3473-4561-aba3-9f7c549a6b7d", + "lastUpdateDateTime": "2021-06-29T19:10:33Z", + "createdDateTime": "2021-06-29T19:10:19Z", + "expirationDateTime": "2021-06-30T19:10:19Z", "status": "succeeded", "errors": [], "results": { @@ -555,7 +645,7 @@ "length": 5, "text": "rapid", "category": "SymptomOrSign", - "confidenceScore": 0.98, + "confidenceScore": 0.93, "name": "Rapid", "links": [ { @@ -767,7 +857,7 @@ "length": 8, "text": "delirium", "category": "Diagnosis", - "confidenceScore": 0.91, + "confidenceScore": 0.97, "name": "Delirium", "links": [ { @@ -929,7 +1019,7 @@ "length": 5, "text": "panic", "category": "Diagnosis", - "confidenceScore": 0.81, + "confidenceScore": 1.0, "name": "Panic", "links": [ { @@ -1023,7 +1113,7 @@ "length": 9, "text": "psychosis", "category": "Diagnosis", - "confidenceScore": 0.94, + "confidenceScore": 0.91, "name": "Psychotic Disorders", "links": [ { @@ -1181,7 +1271,7 @@ "length": 13, "text": "heart failure", "category": "Diagnosis", - "confidenceScore": 0.99, + "confidenceScore": 1.0, "name": "Heart failure", "links": [ { @@ -1340,7 +1430,7 @@ } ], "errors": [], - "modelVersion": "2021-03-01" + "modelVersion": "2021-05-15" } } } 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 5e4499cffa9b..570742c79eeb 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-af0173119adf5447a1ed2078e8c97855-208352f056693a49-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-963b0c2b1bc4fb4f811c637eca4d6071-b2a25f14b7c09c41-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fbbc5786a282c64df8d358b9cc278a4d", "x-ms-return-client-request-id": "true" }, @@ -29,102 +29,102 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "1f0b33dc-2cec-4edf-96ed-e49a0f7b51b1", - "Date": "Fri, 14 May 2021 17:28:33 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/e683302e-3c60-407c-83be-ea21b8e09365", + "apim-request-id": "cf101bec-c82f-4658-8418-7d605ecde7bf", + "Date": "Tue, 29 Jun 2021 19:11:03 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/629b766d-4c55-4bf9-be1e-5a96305a2355", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "161" + "x-envoy-upstream-service-time": "222" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/e683302e-3c60-407c-83be-ea21b8e09365?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/629b766d-4c55-4bf9-be1e-5a96305a2355?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bbeac74cd30307fda0d67684218a1c72", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6e338e54-c2bf-4a72-8f18-8135763d3936", + "apim-request-id": "4eb67d18-f00c-4913-84af-794618ec7eac", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:33 GMT", + "Date": "Tue, 29 Jun 2021 19:11:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "e683302e-3c60-407c-83be-ea21b8e09365", - "lastUpdateDateTime": "2021-05-14T17:28:33Z", - "createdDateTime": "2021-05-14T17:28:33Z", - "expirationDateTime": "2021-05-15T17:28:33Z", + "jobId": "629b766d-4c55-4bf9-be1e-5a96305a2355", + "lastUpdateDateTime": "2021-06-29T19:11:03Z", + "createdDateTime": "2021-06-29T19:11:03Z", + "expirationDateTime": "2021-06-30T19:11:03Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/e683302e-3c60-407c-83be-ea21b8e09365?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/629b766d-4c55-4bf9-be1e-5a96305a2355?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2c9581455d02f093db0efd8af829c0c9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "48857cf3-20b8-43c0-94f4-a6a0776ed580", + "apim-request-id": "57f0d824-e545-461f-93ef-cf939dd02ccc", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:34 GMT", + "Date": "Tue, 29 Jun 2021 19:11: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-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "e683302e-3c60-407c-83be-ea21b8e09365", - "lastUpdateDateTime": "2021-05-14T17:28:33Z", - "createdDateTime": "2021-05-14T17:28:33Z", - "expirationDateTime": "2021-05-15T17:28:33Z", - "status": "notStarted", + "jobId": "629b766d-4c55-4bf9-be1e-5a96305a2355", + "lastUpdateDateTime": "2021-06-29T19:11:05Z", + "createdDateTime": "2021-06-29T19:11:03Z", + "expirationDateTime": "2021-06-30T19:11:03Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/e683302e-3c60-407c-83be-ea21b8e09365?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/629b766d-4c55-4bf9-be1e-5a96305a2355?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7b312057b61ab3835ab45aac2bc8a56e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eff8972d-9bf7-48ca-9683-c91a4616533c", + "apim-request-id": "5c4d95a9-1f6e-42f0-afaf-9af5529e8ea5", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:35 GMT", + "Date": "Tue, 29 Jun 2021 19:11:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-envoy-upstream-service-time": "78" }, "ResponseBody": { - "jobId": "e683302e-3c60-407c-83be-ea21b8e09365", - "lastUpdateDateTime": "2021-05-14T17:28:35Z", - "createdDateTime": "2021-05-14T17:28:33Z", - "expirationDateTime": "2021-05-15T17:28:33Z", + "jobId": "629b766d-4c55-4bf9-be1e-5a96305a2355", + "lastUpdateDateTime": "2021-06-29T19:11:05Z", + "createdDateTime": "2021-06-29T19:11:03Z", + "expirationDateTime": "2021-06-30T19:11:03Z", "status": "succeeded", "errors": [], "results": { @@ -315,7 +315,7 @@ "length": 5, "text": "rapid", "category": "SymptomOrSign", - "confidenceScore": 0.98, + "confidenceScore": 0.93, "name": "Rapid", "links": [ { @@ -527,7 +527,7 @@ "length": 8, "text": "delirium", "category": "Diagnosis", - "confidenceScore": 0.91, + "confidenceScore": 0.97, "name": "Delirium", "links": [ { @@ -689,7 +689,7 @@ "length": 5, "text": "panic", "category": "Diagnosis", - "confidenceScore": 0.81, + "confidenceScore": 1.0, "name": "Panic", "links": [ { @@ -783,7 +783,7 @@ "length": 9, "text": "psychosis", "category": "Diagnosis", - "confidenceScore": 0.94, + "confidenceScore": 0.91, "name": "Psychotic Disorders", "links": [ { @@ -941,7 +941,7 @@ "length": 13, "text": "heart failure", "category": "Diagnosis", - "confidenceScore": 0.99, + "confidenceScore": 1.0, "name": "Heart failure", "links": [ { @@ -1100,7 +1100,7 @@ } ], "errors": [], - "modelVersion": "2021-03-01" + "modelVersion": "2021-05-15" } } } 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 2913a84445b5..84db1e0515cc 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2750e20435834b408b6f6b0693eefb6e-f1ca60345d54dd44-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-9eb7b22a8f187845ab627620318d6056-b6881d9da21e9a40-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1d7c0f7df9a5be46a7bf1d0b574c6095", "x-ms-return-client-request-id": "true" }, @@ -29,342 +29,432 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "51fe9977-9f26-4620-a26a-6ab738117384", - "Date": "Fri, 14 May 2021 17:27:54 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/3e1b5fa0-35a6-4263-86c0-23876536fa65", + "apim-request-id": "408775a9-a415-4edb-bb85-537c8002de71", + "Date": "Tue, 29 Jun 2021 19:10:34 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/4d7025fa-a21b-4f8c-9fa0-d828bc79372f", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "174" + "x-envoy-upstream-service-time": "225" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/3e1b5fa0-35a6-4263-86c0-23876536fa65?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/4d7025fa-a21b-4f8c-9fa0-d828bc79372f?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9441bfd5d8fa13e75ab79017f0dbec22", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d504d4b1-cd54-4d5c-953f-fa5e3ebefb4f", + "apim-request-id": "f86d2a3e-0263-4493-8dbf-384fb86012c1", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:27:54 GMT", + "Date": "Tue, 29 Jun 2021 19:10:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "3e1b5fa0-35a6-4263-86c0-23876536fa65", - "lastUpdateDateTime": "2021-05-14T17:27:55Z", - "createdDateTime": "2021-05-14T17:27:55Z", - "expirationDateTime": "2021-05-15T17:27:55Z", + "jobId": "4d7025fa-a21b-4f8c-9fa0-d828bc79372f", + "lastUpdateDateTime": "2021-06-29T19:10:34Z", + "createdDateTime": "2021-06-29T19:10:34Z", + "expirationDateTime": "2021-06-30T19:10:34Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/3e1b5fa0-35a6-4263-86c0-23876536fa65?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/4d7025fa-a21b-4f8c-9fa0-d828bc79372f?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1f1476b4f8decd8416de12a15e37d599", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2c1765fa-8bd5-4f5f-9007-d9932eedf190", + "apim-request-id": "b6990b83-8048-4685-87cf-39ff17d85547", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:27:56 GMT", + "Date": "Tue, 29 Jun 2021 19:10: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": "3e1b5fa0-35a6-4263-86c0-23876536fa65", - "lastUpdateDateTime": "2021-05-14T17:27:55Z", - "createdDateTime": "2021-05-14T17:27:55Z", - "expirationDateTime": "2021-05-15T17:27:55Z", + "jobId": "4d7025fa-a21b-4f8c-9fa0-d828bc79372f", + "lastUpdateDateTime": "2021-06-29T19:10:34Z", + "createdDateTime": "2021-06-29T19:10:34Z", + "expirationDateTime": "2021-06-30T19:10:34Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/3e1b5fa0-35a6-4263-86c0-23876536fa65?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/4d7025fa-a21b-4f8c-9fa0-d828bc79372f?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9fb8c34e36bba5c72869c2ed682ecdcc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7f34ff17-5d8f-4b59-8f47-f0275cf55bb5", + "apim-request-id": "bc8fa300-b9f3-4b88-88b2-03ed276219bb", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:27:57 GMT", + "Date": "Tue, 29 Jun 2021 19:10:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "3e1b5fa0-35a6-4263-86c0-23876536fa65", - "lastUpdateDateTime": "2021-05-14T17:27:55Z", - "createdDateTime": "2021-05-14T17:27:55Z", - "expirationDateTime": "2021-05-15T17:27:55Z", + "jobId": "4d7025fa-a21b-4f8c-9fa0-d828bc79372f", + "lastUpdateDateTime": "2021-06-29T19:10:34Z", + "createdDateTime": "2021-06-29T19:10:34Z", + "expirationDateTime": "2021-06-30T19:10:34Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/3e1b5fa0-35a6-4263-86c0-23876536fa65?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/4d7025fa-a21b-4f8c-9fa0-d828bc79372f?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e057fbd34137dcb63a747e1bc545b423", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5d57fcec-837f-4de4-a8cc-43edf851593b", + "apim-request-id": "dc5430b7-5284-48a1-be96-2b7ebe0f9592", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:27:58 GMT", + "Date": "Tue, 29 Jun 2021 19:10:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "3e1b5fa0-35a6-4263-86c0-23876536fa65", - "lastUpdateDateTime": "2021-05-14T17:27:55Z", - "createdDateTime": "2021-05-14T17:27:55Z", - "expirationDateTime": "2021-05-15T17:27:55Z", + "jobId": "4d7025fa-a21b-4f8c-9fa0-d828bc79372f", + "lastUpdateDateTime": "2021-06-29T19:10:34Z", + "createdDateTime": "2021-06-29T19:10:34Z", + "expirationDateTime": "2021-06-30T19:10:34Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/3e1b5fa0-35a6-4263-86c0-23876536fa65?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/4d7025fa-a21b-4f8c-9fa0-d828bc79372f?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2dc9f6e14c227d66ae6ff775359664e7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4729387d-25d2-4196-91fd-c7bd2163b9b8", + "apim-request-id": "ace65da8-a773-4061-b7cb-c6629a196506", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:27:59 GMT", + "Date": "Tue, 29 Jun 2021 19:10:38 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": "8" }, "ResponseBody": { - "jobId": "3e1b5fa0-35a6-4263-86c0-23876536fa65", - "lastUpdateDateTime": "2021-05-14T17:27:55Z", - "createdDateTime": "2021-05-14T17:27:55Z", - "expirationDateTime": "2021-05-15T17:27:55Z", + "jobId": "4d7025fa-a21b-4f8c-9fa0-d828bc79372f", + "lastUpdateDateTime": "2021-06-29T19:10:34Z", + "createdDateTime": "2021-06-29T19:10:34Z", + "expirationDateTime": "2021-06-30T19:10:34Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/3e1b5fa0-35a6-4263-86c0-23876536fa65?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/4d7025fa-a21b-4f8c-9fa0-d828bc79372f?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "63ce4611f5e00d620cdb6447b8abdfe2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e1957294-5a1e-4223-bf7a-342683d18623", + "apim-request-id": "9b7df48f-9dfa-41b7-8872-8e009b093f13", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:00 GMT", + "Date": "Tue, 29 Jun 2021 19:10:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "55" + "x-envoy-upstream-service-time": "32" }, "ResponseBody": { - "jobId": "3e1b5fa0-35a6-4263-86c0-23876536fa65", - "lastUpdateDateTime": "2021-05-14T17:27:55Z", - "createdDateTime": "2021-05-14T17:27:55Z", - "expirationDateTime": "2021-05-15T17:27:55Z", + "jobId": "4d7025fa-a21b-4f8c-9fa0-d828bc79372f", + "lastUpdateDateTime": "2021-06-29T19:10:34Z", + "createdDateTime": "2021-06-29T19:10:34Z", + "expirationDateTime": "2021-06-30T19:10:34Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/3e1b5fa0-35a6-4263-86c0-23876536fa65?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/4d7025fa-a21b-4f8c-9fa0-d828bc79372f?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "710c9fb5a06586a995da31c84941a6a4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ef8239d1-2cad-4e33-8cc0-913afccf53bd", + "apim-request-id": "0ea77d55-fe01-49aa-91f9-83033da689cc", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:01 GMT", + "Date": "Tue, 29 Jun 2021 19:10:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "31" }, "ResponseBody": { - "jobId": "3e1b5fa0-35a6-4263-86c0-23876536fa65", - "lastUpdateDateTime": "2021-05-14T17:27:55Z", - "createdDateTime": "2021-05-14T17:27:55Z", - "expirationDateTime": "2021-05-15T17:27:55Z", - "status": "notStarted", + "jobId": "4d7025fa-a21b-4f8c-9fa0-d828bc79372f", + "lastUpdateDateTime": "2021-06-29T19:10:39Z", + "createdDateTime": "2021-06-29T19:10:34Z", + "expirationDateTime": "2021-06-30T19:10:34Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/3e1b5fa0-35a6-4263-86c0-23876536fa65?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/4d7025fa-a21b-4f8c-9fa0-d828bc79372f?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7f0a960f5177eb4394bc2147e71fc503", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4843cf6a-32aa-4bac-8b86-bbe3578471b6", + "apim-request-id": "25e9e751-bec1-4cf4-9b47-b96c3b87725b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:02 GMT", + "Date": "Tue, 29 Jun 2021 19:10: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": "3e1b5fa0-35a6-4263-86c0-23876536fa65", - "lastUpdateDateTime": "2021-05-14T17:27:55Z", - "createdDateTime": "2021-05-14T17:27:55Z", - "expirationDateTime": "2021-05-15T17:27:55Z", - "status": "notStarted", + "jobId": "4d7025fa-a21b-4f8c-9fa0-d828bc79372f", + "lastUpdateDateTime": "2021-06-29T19:10:39Z", + "createdDateTime": "2021-06-29T19:10:34Z", + "expirationDateTime": "2021-06-30T19:10:34Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/3e1b5fa0-35a6-4263-86c0-23876536fa65?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/4d7025fa-a21b-4f8c-9fa0-d828bc79372f?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "96bf148ff28a70829c47ce06c49ac3ca", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ed294336-7552-4a5f-9a19-d3a896c917ae", + "apim-request-id": "904d9c55-1fd0-495a-bbc2-411e3e95eb56", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:03 GMT", + "Date": "Tue, 29 Jun 2021 19:10: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-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "3e1b5fa0-35a6-4263-86c0-23876536fa65", - "lastUpdateDateTime": "2021-05-14T17:27:55Z", - "createdDateTime": "2021-05-14T17:27:55Z", - "expirationDateTime": "2021-05-15T17:27:55Z", - "status": "notStarted", + "jobId": "4d7025fa-a21b-4f8c-9fa0-d828bc79372f", + "lastUpdateDateTime": "2021-06-29T19:10:39Z", + "createdDateTime": "2021-06-29T19:10:34Z", + "expirationDateTime": "2021-06-30T19:10:34Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/3e1b5fa0-35a6-4263-86c0-23876536fa65?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/4d7025fa-a21b-4f8c-9fa0-d828bc79372f?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2137c0345fa0636a5c20dda87e619e75", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4ecccbdc-aaba-420e-94a2-777b80ebefcc", + "apim-request-id": "d120d1f4-c75b-43ac-a9b0-f9da64a41f6f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:04 GMT", + "Date": "Tue, 29 Jun 2021 19:10:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "60" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { - "jobId": "3e1b5fa0-35a6-4263-86c0-23876536fa65", - "lastUpdateDateTime": "2021-05-14T17:27:55Z", - "createdDateTime": "2021-05-14T17:27:55Z", - "expirationDateTime": "2021-05-15T17:27:55Z", - "status": "notStarted", + "jobId": "4d7025fa-a21b-4f8c-9fa0-d828bc79372f", + "lastUpdateDateTime": "2021-06-29T19:10:39Z", + "createdDateTime": "2021-06-29T19:10:34Z", + "expirationDateTime": "2021-06-30T19:10:34Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/3e1b5fa0-35a6-4263-86c0-23876536fa65?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/4d7025fa-a21b-4f8c-9fa0-d828bc79372f?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "34382e1410811c1a1399e330833c27f9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "73d5146b-5c3b-4d25-9253-9d62f527b40a", + "apim-request-id": "f8a2cd80-5b06-48cd-9892-c061dc564732", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:10:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "4d7025fa-a21b-4f8c-9fa0-d828bc79372f", + "lastUpdateDateTime": "2021-06-29T19:10:39Z", + "createdDateTime": "2021-06-29T19:10:34Z", + "expirationDateTime": "2021-06-30T19:10:34Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/4d7025fa-a21b-4f8c-9fa0-d828bc79372f?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "271356f9a3e82f62aa5b3a6915d9f13b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "30f3f8c2-7890-4bc9-b388-0faaf337aca7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:10:45 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": "4d7025fa-a21b-4f8c-9fa0-d828bc79372f", + "lastUpdateDateTime": "2021-06-29T19:10:39Z", + "createdDateTime": "2021-06-29T19:10:34Z", + "expirationDateTime": "2021-06-30T19:10:34Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/4d7025fa-a21b-4f8c-9fa0-d828bc79372f?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "95f158a88e612348a61a0d077c3ae01f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "eb4e7a91-b200-48dd-8bb1-a78935cc00f6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:10: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": "4d7025fa-a21b-4f8c-9fa0-d828bc79372f", + "lastUpdateDateTime": "2021-06-29T19:10:39Z", + "createdDateTime": "2021-06-29T19:10:34Z", + "expirationDateTime": "2021-06-30T19:10:34Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/4d7025fa-a21b-4f8c-9fa0-d828bc79372f?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "28afe3f9774e708dcc088a25d6b00739", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0aab9f79-a3fa-40c2-a67e-c82d2af0f41c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:05 GMT", + "Date": "Tue, 29 Jun 2021 19:10:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-envoy-upstream-service-time": "56" }, "ResponseBody": { - "jobId": "3e1b5fa0-35a6-4263-86c0-23876536fa65", - "lastUpdateDateTime": "2021-05-14T17:28:05Z", - "createdDateTime": "2021-05-14T17:27:55Z", - "expirationDateTime": "2021-05-15T17:27:55Z", + "jobId": "4d7025fa-a21b-4f8c-9fa0-d828bc79372f", + "lastUpdateDateTime": "2021-06-29T19:10:47Z", + "createdDateTime": "2021-06-29T19:10:34Z", + "expirationDateTime": "2021-06-30T19:10:34Z", "status": "succeeded", "errors": [], "results": { @@ -555,7 +645,7 @@ "length": 5, "text": "rapid", "category": "SymptomOrSign", - "confidenceScore": 0.98, + "confidenceScore": 0.93, "name": "Rapid", "links": [ { @@ -767,7 +857,7 @@ "length": 8, "text": "delirium", "category": "Diagnosis", - "confidenceScore": 0.91, + "confidenceScore": 0.97, "name": "Delirium", "links": [ { @@ -929,7 +1019,7 @@ "length": 5, "text": "panic", "category": "Diagnosis", - "confidenceScore": 0.81, + "confidenceScore": 1.0, "name": "Panic", "links": [ { @@ -1023,7 +1113,7 @@ "length": 9, "text": "psychosis", "category": "Diagnosis", - "confidenceScore": 0.94, + "confidenceScore": 0.91, "name": "Psychotic Disorders", "links": [ { @@ -1181,7 +1271,7 @@ "length": 13, "text": "heart failure", "category": "Diagnosis", - "confidenceScore": 0.99, + "confidenceScore": 1.0, "name": "Heart failure", "links": [ { @@ -1340,7 +1430,7 @@ } ], "errors": [], - "modelVersion": "2021-03-01" + "modelVersion": "2021-05-15" } } } 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 392424d61ffd..336aa9512257 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-06ad3a48ed3ef1409762192900fdd639-e9b7af53282b0245-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-aad9770a5dd8c645a9c217c8f90f8542-c64e7d5b33a26741-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "99aaf08b1c844fb2d7a9025199ec97e4", "x-ms-return-client-request-id": "true" }, @@ -29,72 +29,102 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "73f7b559-f1f2-4313-9ee9-950d8063fff4", - "Date": "Fri, 14 May 2021 17:28:36 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/7d677fe6-b89d-4c51-a002-3e9423dfecc7", + "apim-request-id": "b416027e-4409-4859-8e21-7ec18364bff3", + "Date": "Tue, 29 Jun 2021 19:11:06 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/f0ea0acb-fa03-48dd-95ae-ce5d46097f58", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "218" + "x-envoy-upstream-service-time": "178" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/7d677fe6-b89d-4c51-a002-3e9423dfecc7?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/f0ea0acb-fa03-48dd-95ae-ce5d46097f58?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a6eb27012d3e0231e64179d6488bf525", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d03df104-f362-4347-acaf-bd868feb5b79", + "apim-request-id": "c8444058-8f58-4ca1-98ed-1c4b60939d31", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:36 GMT", + "Date": "Tue, 29 Jun 2021 19:11: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": "7" }, "ResponseBody": { - "jobId": "7d677fe6-b89d-4c51-a002-3e9423dfecc7", - "lastUpdateDateTime": "2021-05-14T17:28:36Z", - "createdDateTime": "2021-05-14T17:28:36Z", - "expirationDateTime": "2021-05-15T17:28:36Z", + "jobId": "f0ea0acb-fa03-48dd-95ae-ce5d46097f58", + "lastUpdateDateTime": "2021-06-29T19:11:06Z", + "createdDateTime": "2021-06-29T19:11:06Z", + "expirationDateTime": "2021-06-30T19:11:06Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/7d677fe6-b89d-4c51-a002-3e9423dfecc7?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/f0ea0acb-fa03-48dd-95ae-ce5d46097f58?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4d12280124119b66ed27d10225884cad", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d36827fc-9088-4901-8fea-66f56b36f9ad", + "apim-request-id": "740ca242-dc6d-49f2-a117-d5ad5d228a7a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:37 GMT", + "Date": "Tue, 29 Jun 2021 19:11:07 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": "66" }, "ResponseBody": { - "jobId": "7d677fe6-b89d-4c51-a002-3e9423dfecc7", - "lastUpdateDateTime": "2021-05-14T17:28:37Z", - "createdDateTime": "2021-05-14T17:28:36Z", - "expirationDateTime": "2021-05-15T17:28:36Z", + "jobId": "f0ea0acb-fa03-48dd-95ae-ce5d46097f58", + "lastUpdateDateTime": "2021-06-29T19:11:06Z", + "createdDateTime": "2021-06-29T19:11:06Z", + "expirationDateTime": "2021-06-30T19:11:06Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/f0ea0acb-fa03-48dd-95ae-ce5d46097f58?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c1281b11742f5d97bfa8b242a2dc074b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f92af5e2-8093-401f-98ac-1d4ffe2ae071", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:11:08 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": "f0ea0acb-fa03-48dd-95ae-ce5d46097f58", + "lastUpdateDateTime": "2021-06-29T19:11:08Z", + "createdDateTime": "2021-06-29T19:11:06Z", + "expirationDateTime": "2021-06-30T19:11:06Z", "status": "succeeded", "errors": [], "results": { @@ -285,7 +315,7 @@ "length": 5, "text": "rapid", "category": "SymptomOrSign", - "confidenceScore": 0.98, + "confidenceScore": 0.93, "name": "Rapid", "links": [ { @@ -497,7 +527,7 @@ "length": 8, "text": "delirium", "category": "Diagnosis", - "confidenceScore": 0.91, + "confidenceScore": 0.97, "name": "Delirium", "links": [ { @@ -659,7 +689,7 @@ "length": 5, "text": "panic", "category": "Diagnosis", - "confidenceScore": 0.81, + "confidenceScore": 1.0, "name": "Panic", "links": [ { @@ -753,7 +783,7 @@ "length": 9, "text": "psychosis", "category": "Diagnosis", - "confidenceScore": 0.94, + "confidenceScore": 0.91, "name": "Psychotic Disorders", "links": [ { @@ -911,7 +941,7 @@ "length": 13, "text": "heart failure", "category": "Diagnosis", - "confidenceScore": 0.99, + "confidenceScore": 1.0, "name": "Heart failure", "links": [ { @@ -1070,7 +1100,7 @@ } ], "errors": [], - "modelVersion": "2021-03-01" + "modelVersion": "2021-05-15" } } } 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 90260220c88b..7afd482daab9 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-feed28fb93e78645b227ff2c91e3be3c-2b125894aaf6174d-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-3da7fc85f9540f409112f602502947ed-1f587b5031084241-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "87697e405fe3a2c8182b48340c37e5c5", "x-ms-return-client-request-id": "true" }, @@ -29,72 +29,72 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "4ea6a5c1-5b2f-46da-a2ad-9edcf2235e2f", - "Date": "Fri, 14 May 2021 17:28:06 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/1b75ddde-55b2-400a-a733-496399a1a79a", + "apim-request-id": "bcb45427-c25a-4c14-9dbd-bfa987f3a06d", + "Date": "Tue, 29 Jun 2021 19:10:47 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/2aad26a6-dbe5-424c-89c3-99dcd430a184", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "158" + "x-envoy-upstream-service-time": "248" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/1b75ddde-55b2-400a-a733-496399a1a79a?showStats=true", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/2aad26a6-dbe5-424c-89c3-99dcd430a184?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f1abd77b68195cb092c7f20f1aa7cc84", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4adaab27-4246-4eb5-a2ae-eb3a62a86adf", + "apim-request-id": "4792f198-2cf9-4684-abbd-c4c71c800442", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:06 GMT", + "Date": "Tue, 29 Jun 2021 19:10:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "32" }, "ResponseBody": { - "jobId": "1b75ddde-55b2-400a-a733-496399a1a79a", - "lastUpdateDateTime": "2021-05-14T17:28:06Z", - "createdDateTime": "2021-05-14T17:28:06Z", - "expirationDateTime": "2021-05-15T17:28:06Z", + "jobId": "2aad26a6-dbe5-424c-89c3-99dcd430a184", + "lastUpdateDateTime": "2021-06-29T19:10:48Z", + "createdDateTime": "2021-06-29T19:10:48Z", + "expirationDateTime": "2021-06-30T19:10:48Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/1b75ddde-55b2-400a-a733-496399a1a79a?showStats=true", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/2aad26a6-dbe5-424c-89c3-99dcd430a184?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "be37acebd508d7a1d3d78987b19e23cf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0a37cd63-e7b9-4da3-b6bf-5a2035d1ea16", + "apim-request-id": "f8853af0-cb20-4f44-8c29-b3f9be3957b3", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:08 GMT", + "Date": "Tue, 29 Jun 2021 19:10:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-envoy-upstream-service-time": "67" }, "ResponseBody": { - "jobId": "1b75ddde-55b2-400a-a733-496399a1a79a", - "lastUpdateDateTime": "2021-05-14T17:28:07Z", - "createdDateTime": "2021-05-14T17:28:06Z", - "expirationDateTime": "2021-05-15T17:28:06Z", + "jobId": "2aad26a6-dbe5-424c-89c3-99dcd430a184", + "lastUpdateDateTime": "2021-06-29T19:10:49Z", + "createdDateTime": "2021-06-29T19:10:48Z", + "expirationDateTime": "2021-06-30T19:10:48Z", "status": "succeeded", "errors": [], "results": { @@ -299,7 +299,7 @@ "length": 5, "text": "rapid", "category": "SymptomOrSign", - "confidenceScore": 0.98, + "confidenceScore": 0.93, "name": "Rapid", "links": [ { @@ -511,7 +511,7 @@ "length": 8, "text": "delirium", "category": "Diagnosis", - "confidenceScore": 0.91, + "confidenceScore": 0.97, "name": "Delirium", "links": [ { @@ -673,7 +673,7 @@ "length": 5, "text": "panic", "category": "Diagnosis", - "confidenceScore": 0.81, + "confidenceScore": 1.0, "name": "Panic", "links": [ { @@ -767,7 +767,7 @@ "length": 9, "text": "psychosis", "category": "Diagnosis", - "confidenceScore": 0.94, + "confidenceScore": 0.91, "name": "Psychotic Disorders", "links": [ { @@ -925,7 +925,7 @@ "length": 13, "text": "heart failure", "category": "Diagnosis", - "confidenceScore": 0.99, + "confidenceScore": 1.0, "name": "Heart failure", "links": [ { @@ -1084,7 +1084,7 @@ } ], "errors": [], - "modelVersion": "2021-03-01" + "modelVersion": "2021-05-15" } } } 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 1b40fbf6392c..1a841fedf603 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-070fa386ec861f46bcd6432dce39c58c-e000aaa5f2744a41-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f0d31041667e954ab442b78eac27afee-41a1a46cd9ee9644-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "da8d96a331a03c42a6c41c2d9f512b98", "x-ms-return-client-request-id": "true" }, @@ -29,72 +29,72 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "a16004c8-de37-4784-84a1-fdff39ea50f8", - "Date": "Fri, 14 May 2021 17:28:38 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/27493089-5d17-41d2-b2e6-fca97a5cbe13", + "apim-request-id": "473f4530-a830-470c-87bb-8676a590b4e1", + "Date": "Tue, 29 Jun 2021 19:11:08 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/33bbf22b-4823-4cb0-8f47-adf8e5a18bf7", "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": "204" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/27493089-5d17-41d2-b2e6-fca97a5cbe13?showStats=true", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/33bbf22b-4823-4cb0-8f47-adf8e5a18bf7?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a36dbbc9f92b427287ffda298bd01507", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c81db7cb-7b2a-45d7-acb5-52d99d4e5f76", + "apim-request-id": "f87b46be-876d-4e7a-8d77-d0e2eb69f268", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:38 GMT", + "Date": "Tue, 29 Jun 2021 19:11:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "27493089-5d17-41d2-b2e6-fca97a5cbe13", - "lastUpdateDateTime": "2021-05-14T17:28:38Z", - "createdDateTime": "2021-05-14T17:28:38Z", - "expirationDateTime": "2021-05-15T17:28:38Z", - "status": "running", + "jobId": "33bbf22b-4823-4cb0-8f47-adf8e5a18bf7", + "lastUpdateDateTime": "2021-06-29T19:11:09Z", + "createdDateTime": "2021-06-29T19:11:09Z", + "expirationDateTime": "2021-06-30T19:11:09Z", + "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/27493089-5d17-41d2-b2e6-fca97a5cbe13?showStats=true", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/33bbf22b-4823-4cb0-8f47-adf8e5a18bf7?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "86c4abbaba50d8ace0d0fc3795e01d2c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "44be8db6-440b-4227-8c0b-7914e030c6e2", + "apim-request-id": "6bbd049b-6c87-463a-9868-41a6bb13ece6", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:39 GMT", + "Date": "Tue, 29 Jun 2021 19:11:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "74" }, "ResponseBody": { - "jobId": "27493089-5d17-41d2-b2e6-fca97a5cbe13", - "lastUpdateDateTime": "2021-05-14T17:28:38Z", - "createdDateTime": "2021-05-14T17:28:38Z", - "expirationDateTime": "2021-05-15T17:28:38Z", + "jobId": "33bbf22b-4823-4cb0-8f47-adf8e5a18bf7", + "lastUpdateDateTime": "2021-06-29T19:11:09Z", + "createdDateTime": "2021-06-29T19:11:09Z", + "expirationDateTime": "2021-06-30T19:11:09Z", "status": "succeeded", "errors": [], "results": { @@ -299,7 +299,7 @@ "length": 5, "text": "rapid", "category": "SymptomOrSign", - "confidenceScore": 0.98, + "confidenceScore": 0.93, "name": "Rapid", "links": [ { @@ -511,7 +511,7 @@ "length": 8, "text": "delirium", "category": "Diagnosis", - "confidenceScore": 0.91, + "confidenceScore": 0.97, "name": "Delirium", "links": [ { @@ -673,7 +673,7 @@ "length": 5, "text": "panic", "category": "Diagnosis", - "confidenceScore": 0.81, + "confidenceScore": 1.0, "name": "Panic", "links": [ { @@ -767,7 +767,7 @@ "length": 9, "text": "psychosis", "category": "Diagnosis", - "confidenceScore": 0.94, + "confidenceScore": 0.91, "name": "Psychotic Disorders", "links": [ { @@ -925,7 +925,7 @@ "length": 13, "text": "heart failure", "category": "Diagnosis", - "confidenceScore": 0.99, + "confidenceScore": 1.0, "name": "Heart failure", "links": [ { @@ -1084,7 +1084,7 @@ } ], "errors": [], - "modelVersion": "2021-03-01" + "modelVersion": "2021-05-15" } } } 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 39cb919f9800..13ae933a83f6 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4e3f730d9591ec4ba78162ab2b735738-537ad22dc9e7774d-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-402920e8aba0d2408f21e5e4ace8757c-39c56a2e4a365046-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0d63e53cea7530898179e7904fedbae6", "x-ms-return-client-request-id": "true" }, @@ -29,102 +29,132 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "72c93a50-9f3a-447a-8caa-8dc2386f2d48", - "Date": "Fri, 14 May 2021 17:28:08 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/6df29c5e-ebce-41c8-b644-234d8dded8b4", + "apim-request-id": "2daaad1d-93ef-4ee9-8dee-110b5bc6457d", + "Date": "Tue, 29 Jun 2021 19:10:49 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/874a1559-4781-480a-9a62-c825dc695b36", "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": "236" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/6df29c5e-ebce-41c8-b644-234d8dded8b4?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/874a1559-4781-480a-9a62-c825dc695b36?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7a482533d010f661d7a330e46a9c020c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f7d30f42-7d1c-423c-b184-81a06ef91283", + "apim-request-id": "f025bdfa-2063-4d58-8027-e30dcb448a3a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:08 GMT", + "Date": "Tue, 29 Jun 2021 19:10:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "27" }, "ResponseBody": { - "jobId": "6df29c5e-ebce-41c8-b644-234d8dded8b4", - "lastUpdateDateTime": "2021-05-14T17:28:08Z", - "createdDateTime": "2021-05-14T17:28:08Z", - "expirationDateTime": "2021-05-15T17:28:08Z", + "jobId": "874a1559-4781-480a-9a62-c825dc695b36", + "lastUpdateDateTime": "2021-06-29T19:10:50Z", + "createdDateTime": "2021-06-29T19:10:50Z", + "expirationDateTime": "2021-06-30T19:10:50Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/6df29c5e-ebce-41c8-b644-234d8dded8b4?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/874a1559-4781-480a-9a62-c825dc695b36?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d4480f3cd87c0175cc930cf584ae8a9b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9d159dbd-9f72-4ebd-9bf9-c5132fe84c46", + "apim-request-id": "cf9c5829-367f-43be-a6d7-4b44b1a9a471", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:09 GMT", + "Date": "Tue, 29 Jun 2021 19:10:50 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": "15" }, "ResponseBody": { - "jobId": "6df29c5e-ebce-41c8-b644-234d8dded8b4", - "lastUpdateDateTime": "2021-05-14T17:28:08Z", - "createdDateTime": "2021-05-14T17:28:08Z", - "expirationDateTime": "2021-05-15T17:28:08Z", + "jobId": "874a1559-4781-480a-9a62-c825dc695b36", + "lastUpdateDateTime": "2021-06-29T19:10:50Z", + "createdDateTime": "2021-06-29T19:10:50Z", + "expirationDateTime": "2021-06-30T19:10:50Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/6df29c5e-ebce-41c8-b644-234d8dded8b4?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/874a1559-4781-480a-9a62-c825dc695b36?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "00da5d97d0326c02836c36d1baa4c6e5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0a045459-2697-4389-8e05-8991d53e5cfc", + "apim-request-id": "2f27a76a-58ff-4f83-b5b4-8771df51cef3", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:10 GMT", + "Date": "Tue, 29 Jun 2021 19:10:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "6df29c5e-ebce-41c8-b644-234d8dded8b4", - "lastUpdateDateTime": "2021-05-14T17:28:10Z", - "createdDateTime": "2021-05-14T17:28:08Z", - "expirationDateTime": "2021-05-15T17:28:08Z", + "jobId": "874a1559-4781-480a-9a62-c825dc695b36", + "lastUpdateDateTime": "2021-06-29T19:10:50Z", + "createdDateTime": "2021-06-29T19:10:50Z", + "expirationDateTime": "2021-06-30T19:10:50Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/874a1559-4781-480a-9a62-c825dc695b36?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4053da77e5a55a69b046ae7dc36c7228", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cd23dd53-0445-46e3-a9a6-2af5c29af740", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:10:52 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": "874a1559-4781-480a-9a62-c825dc695b36", + "lastUpdateDateTime": "2021-06-29T19:10:52Z", + "createdDateTime": "2021-06-29T19:10:50Z", + "expirationDateTime": "2021-06-30T19:10:50Z", "status": "succeeded", "errors": [], "results": { @@ -315,7 +345,7 @@ "length": 5, "text": "rapid", "category": "SymptomOrSign", - "confidenceScore": 0.98, + "confidenceScore": 0.93, "name": "Rapid", "links": [ { @@ -527,7 +557,7 @@ "length": 8, "text": "delirium", "category": "Diagnosis", - "confidenceScore": 0.91, + "confidenceScore": 0.97, "name": "Delirium", "links": [ { @@ -689,7 +719,7 @@ "length": 5, "text": "panic", "category": "Diagnosis", - "confidenceScore": 0.81, + "confidenceScore": 1.0, "name": "Panic", "links": [ { @@ -783,7 +813,7 @@ "length": 9, "text": "psychosis", "category": "Diagnosis", - "confidenceScore": 0.94, + "confidenceScore": 0.91, "name": "Psychotic Disorders", "links": [ { @@ -941,7 +971,7 @@ "length": 13, "text": "heart failure", "category": "Diagnosis", - "confidenceScore": 0.99, + "confidenceScore": 1.0, "name": "Heart failure", "links": [ { @@ -1100,7 +1130,7 @@ } ], "errors": [], - "modelVersion": "2021-03-01" + "modelVersion": "2021-05-15" } } } 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 f165ba81238e..749f376cf1fb 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6b24e4b3aed95f4390160bbbdc403f84-8bd8362ee5be3a4f-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-402bde6afdde364b908d406539808ee7-e0874b8179234f4e-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "17e898e3099143136b2e35c82964efd9", "x-ms-return-client-request-id": "true" }, @@ -29,102 +29,132 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "7b5c659b-3899-4810-b3e8-4817ebe3086b", - "Date": "Fri, 14 May 2021 17:28:40 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/be639dc2-8380-43e5-9d0a-16ce73769377", + "apim-request-id": "f82c048b-bb7a-4e90-a149-d1df6df923ad", + "Date": "Tue, 29 Jun 2021 19:11:10 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/f2da1a99-0bc0-495f-b1ae-4130209cc10a", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "85" + "x-envoy-upstream-service-time": "193" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/be639dc2-8380-43e5-9d0a-16ce73769377?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/f2da1a99-0bc0-495f-b1ae-4130209cc10a?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7dd0fa2b947b788e4d51b90a9e064f06", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bb7e7ccb-0e74-4607-9e7f-b10c14e6b595", + "apim-request-id": "de8b48e0-0665-41f2-bd72-41f4b9e733e1", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:40 GMT", + "Date": "Tue, 29 Jun 2021 19:11:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "be639dc2-8380-43e5-9d0a-16ce73769377", - "lastUpdateDateTime": "2021-05-14T17:28:40Z", - "createdDateTime": "2021-05-14T17:28:40Z", - "expirationDateTime": "2021-05-15T17:28:40Z", + "jobId": "f2da1a99-0bc0-495f-b1ae-4130209cc10a", + "lastUpdateDateTime": "2021-06-29T19:11:10Z", + "createdDateTime": "2021-06-29T19:11:10Z", + "expirationDateTime": "2021-06-30T19:11:10Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/be639dc2-8380-43e5-9d0a-16ce73769377?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/f2da1a99-0bc0-495f-b1ae-4130209cc10a?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ddd7cae644b1aa3bb79fb4ecc872f743", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c1ee70ce-fd6a-4745-9735-63c212219d69", + "apim-request-id": "dddbcf74-1097-4aa2-ac7f-b3c8406ad942", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:41 GMT", + "Date": "Tue, 29 Jun 2021 19:11:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "be639dc2-8380-43e5-9d0a-16ce73769377", - "lastUpdateDateTime": "2021-05-14T17:28:40Z", - "createdDateTime": "2021-05-14T17:28:40Z", - "expirationDateTime": "2021-05-15T17:28:40Z", + "jobId": "f2da1a99-0bc0-495f-b1ae-4130209cc10a", + "lastUpdateDateTime": "2021-06-29T19:11:10Z", + "createdDateTime": "2021-06-29T19:11:10Z", + "expirationDateTime": "2021-06-30T19:11:10Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/be639dc2-8380-43e5-9d0a-16ce73769377?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/f2da1a99-0bc0-495f-b1ae-4130209cc10a?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3c1db919135b4f3e0970ca3f4f09a565", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d5c1a3a3-77ba-40df-adbd-e72554b992b1", + "apim-request-id": "834cd50d-b06b-429c-aa88-abf41e64ce34", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:42 GMT", + "Date": "Tue, 29 Jun 2021 19:11:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "95" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "be639dc2-8380-43e5-9d0a-16ce73769377", - "lastUpdateDateTime": "2021-05-14T17:28:42Z", - "createdDateTime": "2021-05-14T17:28:40Z", - "expirationDateTime": "2021-05-15T17:28:40Z", + "jobId": "f2da1a99-0bc0-495f-b1ae-4130209cc10a", + "lastUpdateDateTime": "2021-06-29T19:11:12Z", + "createdDateTime": "2021-06-29T19:11:10Z", + "expirationDateTime": "2021-06-30T19:11:10Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/f2da1a99-0bc0-495f-b1ae-4130209cc10a?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5fe22edf128ce627be26c6dcdfa2b0da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dc339f70-8131-41bd-9d2a-eb8ada9745e0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:11:13 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": "f2da1a99-0bc0-495f-b1ae-4130209cc10a", + "lastUpdateDateTime": "2021-06-29T19:11:13Z", + "createdDateTime": "2021-06-29T19:11:10Z", + "expirationDateTime": "2021-06-30T19:11:10Z", "status": "succeeded", "errors": [], "results": { @@ -315,7 +345,7 @@ "length": 5, "text": "rapid", "category": "SymptomOrSign", - "confidenceScore": 0.98, + "confidenceScore": 0.93, "name": "Rapid", "links": [ { @@ -527,7 +557,7 @@ "length": 8, "text": "delirium", "category": "Diagnosis", - "confidenceScore": 0.91, + "confidenceScore": 0.97, "name": "Delirium", "links": [ { @@ -689,7 +719,7 @@ "length": 5, "text": "panic", "category": "Diagnosis", - "confidenceScore": 0.81, + "confidenceScore": 1.0, "name": "Panic", "links": [ { @@ -783,7 +813,7 @@ "length": 9, "text": "psychosis", "category": "Diagnosis", - "confidenceScore": 0.94, + "confidenceScore": 0.91, "name": "Psychotic Disorders", "links": [ { @@ -941,7 +971,7 @@ "length": 13, "text": "heart failure", "category": "Diagnosis", - "confidenceScore": 0.99, + "confidenceScore": 1.0, "name": "Heart failure", "links": [ { @@ -1100,7 +1130,7 @@ } ], "errors": [], - "modelVersion": "2021-03-01" + "modelVersion": "2021-05-15" } } } 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 6b84e90e187c..c7ef312e33de 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "1555", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6c6f77aadf6fe940bb36b67add3adc80-69ea764c1544334d-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-93060d43de2d844895ca823ec0684137-1eacc264b531d540-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d6f2d0cc095dc3418ddc67fdaec34f8c", "x-ms-return-client-request-id": "true" }, @@ -69,65 +69,65 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "5fa8653d-9a03-4b6b-be1b-84207c3de611", - "Date": "Fri, 14 May 2021 17:28:11 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/0acc19e3-aa02-40f2-9a0a-b9c71d7cea06", + "apim-request-id": "5a75f20f-e36e-4d08-ac46-0ef2ee56d0ee", + "Date": "Tue, 29 Jun 2021 19:10:54 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/acc4a854-4336-48bb-8cff-ba2c967b790e", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "218" + "x-envoy-upstream-service-time": "368" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/0acc19e3-aa02-40f2-9a0a-b9c71d7cea06", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/acc4a854-4336-48bb-8cff-ba2c967b790e", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e1bd0b21afaacf4ed5d58b17e46d5140", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "087e5f20-b7c7-40b2-9554-8b644369d0b5", - "Date": "Fri, 14 May 2021 17:28:11 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/0acc19e3-aa02-40f2-9a0a-b9c71d7cea06", + "apim-request-id": "9dd628d0-2d48-4795-bcc4-d7dfbbc2dbbc", + "Date": "Tue, 29 Jun 2021 19:10:54 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/acc4a854-4336-48bb-8cff-ba2c967b790e", "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": "32" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/0acc19e3-aa02-40f2-9a0a-b9c71d7cea06?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/acc4a854-4336-48bb-8cff-ba2c967b790e?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0b47155e744b34ff8e7def83a29a0d23", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d3ca05d8-c346-41af-aeb5-6be31544145e", + "apim-request-id": "b3d661cb-8506-4ee4-bbb5-0170b57a6ef9", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:11 GMT", + "Date": "Tue, 29 Jun 2021 19:10:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "0acc19e3-aa02-40f2-9a0a-b9c71d7cea06", - "lastUpdateDateTime": "2021-05-14T17:28:11Z", - "createdDateTime": "2021-05-14T17:28:11Z", - "expirationDateTime": "2021-05-15T17:28:11Z", + "jobId": "acc4a854-4336-48bb-8cff-ba2c967b790e", + "lastUpdateDateTime": "2021-06-29T19:10:54Z", + "createdDateTime": "2021-06-29T19:10:53Z", + "expirationDateTime": "2021-06-30T19:10:53Z", "status": "cancelled", "errors": [] } 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 9483e4504a55..3156fb7ed5b1 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "1555", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5d2e61ca1287574d98b73efeb7759cb8-9db251c657773341-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-c525b5b8318edd478fe96fbb30670a72-346214ee39d5d34c-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "174f72762caf768d734c4bc2cef9931d", "x-ms-return-client-request-id": "true" }, @@ -69,32 +69,32 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "7422f2fd-d19c-41bf-a8f3-ca49422d75a8", - "Date": "Fri, 14 May 2021 17:28:43 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/82e05bea-55a0-4197-a101-d38ff56e8e7e", + "apim-request-id": "7cfddb6e-21f0-45d3-b784-e2af1707ee25", + "Date": "Tue, 29 Jun 2021 19:11:14 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/69d3eeb9-e8c6-484b-81a5-37330fd91282", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "328" + "x-envoy-upstream-service-time": "509" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/82e05bea-55a0-4197-a101-d38ff56e8e7e", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/69d3eeb9-e8c6-484b-81a5-37330fd91282", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b4dedd3f6eed1404f274aef6ca46c145", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "b3fd1a7d-c6c5-4712-88bc-e221faccd513", - "Date": "Fri, 14 May 2021 17:28:43 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/82e05bea-55a0-4197-a101-d38ff56e8e7e", + "apim-request-id": "c000335c-2e95-474b-9a5a-cf3b82a61aa2", + "Date": "Tue, 29 Jun 2021 19:11:14 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/69d3eeb9-e8c6-484b-81a5-37330fd91282", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", @@ -103,31 +103,31 @@ "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/82e05bea-55a0-4197-a101-d38ff56e8e7e?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/69d3eeb9-e8c6-484b-81a5-37330fd91282?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1748fd33d947290e5b3b13a681114adc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f07eac96-fb7c-4e3a-ae37-7ff34b04c0be", + "apim-request-id": "35eef13c-e8ae-45b8-9d3a-f616b751e8ba", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:43 GMT", + "Date": "Tue, 29 Jun 2021 19:11:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "82e05bea-55a0-4197-a101-d38ff56e8e7e", - "lastUpdateDateTime": "2021-05-14T17:28:43Z", - "createdDateTime": "2021-05-14T17:28:43Z", - "expirationDateTime": "2021-05-15T17:28:43Z", + "jobId": "69d3eeb9-e8c6-484b-81a5-37330fd91282", + "lastUpdateDateTime": "2021-06-29T19:11:14Z", + "createdDateTime": "2021-06-29T19:11:14Z", + "expirationDateTime": "2021-06-30T19:11:14Z", "status": "cancelled", "errors": [] } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json index 15521b115dc5..d08ea6ede5cf 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "260", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4ce599091e8e084f8fcf579b46d2ba41-e7d8ade24c21704e-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-a5cc19f76b52254a8385c0cd7e132467-f2545e0832f4164c-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ed679d93c08fe171a9b236aaa757046a", "x-ms-return-client-request-id": "true" }, @@ -34,102 +34,72 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "e81b9b89-2e02-41e3-a593-1ad1f137410b", - "Date": "Fri, 14 May 2021 17:28:14 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/adb78467-0fd9-4f11-a267-6ba8720b9d29", + "apim-request-id": "3b7e372f-08d6-42f0-a25a-d1d3d08e109b", + "Date": "Tue, 29 Jun 2021 19:10:54 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/fcc4c3ff-c221-4a81-80a3-8ce2f8cacc3d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2741" + "x-envoy-upstream-service-time": "243" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/adb78467-0fd9-4f11-a267-6ba8720b9d29?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/fcc4c3ff-c221-4a81-80a3-8ce2f8cacc3d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8ac7fae8cf64a9249598acb3531ad44c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "05170e39-019d-4f40-9160-54ebea1292ee", + "apim-request-id": "4b366e6e-3480-4f7a-8765-28bc703034e4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:14 GMT", + "Date": "Tue, 29 Jun 2021 19:10:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { - "jobId": "adb78467-0fd9-4f11-a267-6ba8720b9d29", - "lastUpdateDateTime": "2021-05-14T17:28:14Z", - "createdDateTime": "2021-05-14T17:28:11Z", - "expirationDateTime": "2021-05-15T17:28:11Z", + "jobId": "fcc4c3ff-c221-4a81-80a3-8ce2f8cacc3d", + "lastUpdateDateTime": "2021-06-29T19:10:54Z", + "createdDateTime": "2021-06-29T19:10:54Z", + "expirationDateTime": "2021-06-30T19:10:54Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/adb78467-0fd9-4f11-a267-6ba8720b9d29?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/fcc4c3ff-c221-4a81-80a3-8ce2f8cacc3d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e1e35bcd7fe4ca895c5026b1fcf89877", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6261ac6d-8e28-426e-99a7-59b838bd32b8", + "apim-request-id": "c5aa5705-4671-4336-9238-b9be5d93cc09", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:15 GMT", + "Date": "Tue, 29 Jun 2021 19:10: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-envoy-upstream-service-time": "64" }, "ResponseBody": { - "jobId": "adb78467-0fd9-4f11-a267-6ba8720b9d29", - "lastUpdateDateTime": "2021-05-14T17:28:15Z", - "createdDateTime": "2021-05-14T17:28:11Z", - "expirationDateTime": "2021-05-15T17:28:11Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/adb78467-0fd9-4f11-a267-6ba8720b9d29?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.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": "04075d85-586d-4691-bffc-5fe022ae61ca", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:16 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "49" - }, - "ResponseBody": { - "jobId": "adb78467-0fd9-4f11-a267-6ba8720b9d29", - "lastUpdateDateTime": "2021-05-14T17:28:15Z", - "createdDateTime": "2021-05-14T17:28:11Z", - "expirationDateTime": "2021-05-15T17:28:11Z", + "jobId": "fcc4c3ff-c221-4a81-80a3-8ce2f8cacc3d", + "lastUpdateDateTime": "2021-06-29T19:10:54Z", + "createdDateTime": "2021-06-29T19:10:54Z", + "expirationDateTime": "2021-06-30T19:10:54Z", "status": "succeeded", "errors": [], "results": { @@ -320,7 +290,7 @@ "length": 5, "text": "rapid", "category": "SymptomOrSign", - "confidenceScore": 0.98, + "confidenceScore": 0.93, "name": "Rapid", "links": [ { @@ -532,7 +502,7 @@ "length": 8, "text": "delirium", "category": "Diagnosis", - "confidenceScore": 0.91, + "confidenceScore": 0.97, "name": "Delirium", "links": [ { @@ -694,7 +664,7 @@ "length": 5, "text": "panic", "category": "Diagnosis", - "confidenceScore": 0.81, + "confidenceScore": 1.0, "name": "Panic", "links": [ { @@ -788,7 +758,7 @@ "length": 9, "text": "psychosis", "category": "Diagnosis", - "confidenceScore": 0.94, + "confidenceScore": 0.91, "name": "Psychotic Disorders", "links": [ { @@ -946,7 +916,7 @@ "length": 13, "text": "heart failure", "category": "Diagnosis", - "confidenceScore": 0.99, + "confidenceScore": 1.0, "name": "Heart failure", "links": [ { @@ -1117,7 +1087,7 @@ } } ], - "modelVersion": "2021-03-01" + "modelVersion": "2021-05-15" } } } 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 af75888ca655..f68ac57936e5 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "260", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-29c60538ee9fa040b19f2fe9c801a61c-8ebe7471f6afd342-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-e0ea9cacacca5e4a80c40d395164f0ef-6e1e41fba4772745-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4352d8dd6e2ff74a3743e20989f20949", "x-ms-return-client-request-id": "true" }, @@ -34,102 +34,132 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "9de576e5-95d7-42b4-8074-ee36bfe1cc66", - "Date": "Fri, 14 May 2021 17:28:43 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/3cfd0cd2-26c3-49f0-9d50-aa3928f9d959", + "apim-request-id": "dfb00649-4fc6-48b6-aa35-064d50cb48fb", + "Date": "Tue, 29 Jun 2021 19:11:14 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/6dc2e3aa-b902-4b43-9345-a3355d56b272", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "141" + "x-envoy-upstream-service-time": "204" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/3cfd0cd2-26c3-49f0-9d50-aa3928f9d959?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/6dc2e3aa-b902-4b43-9345-a3355d56b272?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b850713105701863d1b6a799a800b67b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2d0fc91a-247e-4334-9a05-13a84a22bf07", + "apim-request-id": "9ab30fe3-0594-40f7-9430-ae146412c20d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:43 GMT", + "Date": "Tue, 29 Jun 2021 19:11:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { - "jobId": "3cfd0cd2-26c3-49f0-9d50-aa3928f9d959", - "lastUpdateDateTime": "2021-05-14T17:28:44Z", - "createdDateTime": "2021-05-14T17:28:43Z", - "expirationDateTime": "2021-05-15T17:28:43Z", + "jobId": "6dc2e3aa-b902-4b43-9345-a3355d56b272", + "lastUpdateDateTime": "2021-06-29T19:11:15Z", + "createdDateTime": "2021-06-29T19:11:14Z", + "expirationDateTime": "2021-06-30T19:11:14Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/3cfd0cd2-26c3-49f0-9d50-aa3928f9d959?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/6dc2e3aa-b902-4b43-9345-a3355d56b272?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7b6997a8eb08a1c0115e8728d43fe710", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1109f78b-d0d2-4d84-b183-9736f3eba910", + "apim-request-id": "bec51179-72f4-473e-b1d4-e2c158eb0a4c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:44 GMT", + "Date": "Tue, 29 Jun 2021 19:11:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "3cfd0cd2-26c3-49f0-9d50-aa3928f9d959", - "lastUpdateDateTime": "2021-05-14T17:28:45Z", - "createdDateTime": "2021-05-14T17:28:43Z", - "expirationDateTime": "2021-05-15T17:28:43Z", - "status": "running", + "jobId": "6dc2e3aa-b902-4b43-9345-a3355d56b272", + "lastUpdateDateTime": "2021-06-29T19:11:15Z", + "createdDateTime": "2021-06-29T19:11:14Z", + "expirationDateTime": "2021-06-30T19:11:14Z", + "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/3cfd0cd2-26c3-49f0-9d50-aa3928f9d959?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/6dc2e3aa-b902-4b43-9345-a3355d56b272?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c4c517d3dcd1d7de74397279c7b14e37", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "70f30816-61b8-4de5-8775-c8aa8a21aedd", + "apim-request-id": "e5849f6d-ccbc-4e99-95bc-0343028c839b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:46 GMT", + "Date": "Tue, 29 Jun 2021 19:11:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "49" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "3cfd0cd2-26c3-49f0-9d50-aa3928f9d959", - "lastUpdateDateTime": "2021-05-14T17:28:45Z", - "createdDateTime": "2021-05-14T17:28:43Z", - "expirationDateTime": "2021-05-15T17:28:43Z", + "jobId": "6dc2e3aa-b902-4b43-9345-a3355d56b272", + "lastUpdateDateTime": "2021-06-29T19:11:15Z", + "createdDateTime": "2021-06-29T19:11:14Z", + "expirationDateTime": "2021-06-30T19:11:14Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/6dc2e3aa-b902-4b43-9345-a3355d56b272?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f260678d8d894640b1aea7117e3b4491", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "483c023a-2e15-493d-89b3-3cd3a4b410c9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:11:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "75" + }, + "ResponseBody": { + "jobId": "6dc2e3aa-b902-4b43-9345-a3355d56b272", + "lastUpdateDateTime": "2021-06-29T19:11:18Z", + "createdDateTime": "2021-06-29T19:11:14Z", + "expirationDateTime": "2021-06-30T19:11:14Z", "status": "succeeded", "errors": [], "results": { @@ -320,7 +350,7 @@ "length": 5, "text": "rapid", "category": "SymptomOrSign", - "confidenceScore": 0.98, + "confidenceScore": 0.93, "name": "Rapid", "links": [ { @@ -532,7 +562,7 @@ "length": 8, "text": "delirium", "category": "Diagnosis", - "confidenceScore": 0.91, + "confidenceScore": 0.97, "name": "Delirium", "links": [ { @@ -694,7 +724,7 @@ "length": 5, "text": "panic", "category": "Diagnosis", - "confidenceScore": 0.81, + "confidenceScore": 1.0, "name": "Panic", "links": [ { @@ -788,7 +818,7 @@ "length": 9, "text": "psychosis", "category": "Diagnosis", - "confidenceScore": 0.94, + "confidenceScore": 0.91, "name": "Psychotic Disorders", "links": [ { @@ -946,7 +976,7 @@ "length": 13, "text": "heart failure", "category": "Diagnosis", - "confidenceScore": 0.99, + "confidenceScore": 1.0, "name": "Heart failure", "links": [ { @@ -1117,7 +1147,7 @@ } } ], - "modelVersion": "2021-03-01" + "modelVersion": "2021-05-15" } } } 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 bb8f842d55a2..b5d0d26fc138 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-57003a57b46fc749af872da97700d5f6-6dafbbac19fd5f4f-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-55c5d8bb689e424f909bb7d045f2407a-82091a968f859f4a-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8ec3c90b7880bba55b75abdb84a19321", "x-ms-return-client-request-id": "true" }, @@ -29,72 +29,102 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "d96d3a49-ab72-4f8a-9c36-34a13c14794b", - "Date": "Fri, 14 May 2021 17:28:16 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/14d80f94-eb28-428e-8c5d-f0a81733427d", + "apim-request-id": "7aaec434-2751-4b5d-a8dd-b2c25f281284", + "Date": "Tue, 29 Jun 2021 19:10:55 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/a650b6bc-c6e6-46de-8a22-73d388968a91", "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": "186" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/14d80f94-eb28-428e-8c5d-f0a81733427d?showStats=true", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/a650b6bc-c6e6-46de-8a22-73d388968a91?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "56fe48ebb003114e437c6f5c1a23295d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e0990060-689c-4df8-b282-f5ecf5bf6cfe", + "apim-request-id": "7eaaad8e-373f-4905-8193-eae9fbc97a73", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:16 GMT", + "Date": "Tue, 29 Jun 2021 19:10:55 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": { - "jobId": "14d80f94-eb28-428e-8c5d-f0a81733427d", - "lastUpdateDateTime": "2021-05-14T17:28:16Z", - "createdDateTime": "2021-05-14T17:28:16Z", - "expirationDateTime": "2021-05-15T17:28:16Z", + "jobId": "a650b6bc-c6e6-46de-8a22-73d388968a91", + "lastUpdateDateTime": "2021-06-29T19:10:55Z", + "createdDateTime": "2021-06-29T19:10:55Z", + "expirationDateTime": "2021-06-30T19:10:55Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/14d80f94-eb28-428e-8c5d-f0a81733427d?showStats=true", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/a650b6bc-c6e6-46de-8a22-73d388968a91?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e2f12bb5a78a8d006ec8d88886d7049c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7923b215-94e3-4a7c-ba22-9c50e97a7ef5", + "apim-request-id": "437582ef-d05c-4e61-85d7-b95fa792f9de", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:17 GMT", + "Date": "Tue, 29 Jun 2021 19:10:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "14d80f94-eb28-428e-8c5d-f0a81733427d", - "lastUpdateDateTime": "2021-05-14T17:28:17Z", - "createdDateTime": "2021-05-14T17:28:16Z", - "expirationDateTime": "2021-05-15T17:28:16Z", + "jobId": "a650b6bc-c6e6-46de-8a22-73d388968a91", + "lastUpdateDateTime": "2021-06-29T19:10:55Z", + "createdDateTime": "2021-06-29T19:10:55Z", + "expirationDateTime": "2021-06-30T19:10:55Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/a650b6bc-c6e6-46de-8a22-73d388968a91?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c7d5601dc12e5b3c7ab14a040948a137", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "99019a2e-a98f-4198-89d3-39743386ec3c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:10:58 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": "a650b6bc-c6e6-46de-8a22-73d388968a91", + "lastUpdateDateTime": "2021-06-29T19:10:57Z", + "createdDateTime": "2021-06-29T19:10:55Z", + "expirationDateTime": "2021-06-30T19:10:55Z", "status": "succeeded", "errors": [], "results": { @@ -299,7 +329,7 @@ "length": 5, "text": "rapid", "category": "SymptomOrSign", - "confidenceScore": 0.98, + "confidenceScore": 0.93, "name": "Rapid", "links": [ { @@ -511,7 +541,7 @@ "length": 8, "text": "delirium", "category": "Diagnosis", - "confidenceScore": 0.91, + "confidenceScore": 0.97, "name": "Delirium", "links": [ { @@ -673,7 +703,7 @@ "length": 5, "text": "panic", "category": "Diagnosis", - "confidenceScore": 0.81, + "confidenceScore": 1.0, "name": "Panic", "links": [ { @@ -767,7 +797,7 @@ "length": 9, "text": "psychosis", "category": "Diagnosis", - "confidenceScore": 0.94, + "confidenceScore": 0.91, "name": "Psychotic Disorders", "links": [ { @@ -925,7 +955,7 @@ "length": 13, "text": "heart failure", "category": "Diagnosis", - "confidenceScore": 0.99, + "confidenceScore": 1.0, "name": "Heart failure", "links": [ { @@ -1084,7 +1114,7 @@ } ], "errors": [], - "modelVersion": "2021-03-01" + "modelVersion": "2021-05-15" } } } 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 f6a2c78502cf..2154b6f179b1 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-27ebe7131ae8c843a801e2322f4a5695-4b97556b1f395b42-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-5ce410b613bd4642a75f615877da3be5-37891006616e8f43-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cb820fc464b79dcc9212329646bf509a", "x-ms-return-client-request-id": "true" }, @@ -29,72 +29,72 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "fa4d845a-460d-41ae-bad8-cee631e18f96", - "Date": "Fri, 14 May 2021 17:28:46 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/703762f5-d5d2-47f3-a826-6e15c7c2db76", + "apim-request-id": "92de0172-c55c-4a09-9477-0d4db0372cc0", + "Date": "Tue, 29 Jun 2021 19:11:18 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/2b8ee14a-8711-4f0c-94c7-6d95b9713d84", "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": "156" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/703762f5-d5d2-47f3-a826-6e15c7c2db76?showStats=true", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/2b8ee14a-8711-4f0c-94c7-6d95b9713d84?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "08d18cd76fa1ba75ad5e5758b7de00e4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ff67d930-6da8-4993-bc6f-575b9e450201", + "apim-request-id": "83d7a958-4d31-4051-8789-336bca3c1f83", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:46 GMT", + "Date": "Tue, 29 Jun 2021 19:11:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "703762f5-d5d2-47f3-a826-6e15c7c2db76", - "lastUpdateDateTime": "2021-05-14T17:28:47Z", - "createdDateTime": "2021-05-14T17:28:47Z", - "expirationDateTime": "2021-05-15T17:28:47Z", + "jobId": "2b8ee14a-8711-4f0c-94c7-6d95b9713d84", + "lastUpdateDateTime": "2021-06-29T19:11:18Z", + "createdDateTime": "2021-06-29T19:11:18Z", + "expirationDateTime": "2021-06-30T19:11:18Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/703762f5-d5d2-47f3-a826-6e15c7c2db76?showStats=true", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/2b8ee14a-8711-4f0c-94c7-6d95b9713d84?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2ac480b3f6758c758bf3f8f60a589915", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b35eef75-e3eb-4338-9577-7ad7977ea7af", + "apim-request-id": "7a9fc35b-9fef-49f5-86a9-05d2d615295f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:48 GMT", + "Date": "Tue, 29 Jun 2021 19:11:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "408" + "x-envoy-upstream-service-time": "72" }, "ResponseBody": { - "jobId": "703762f5-d5d2-47f3-a826-6e15c7c2db76", - "lastUpdateDateTime": "2021-05-14T17:28:47Z", - "createdDateTime": "2021-05-14T17:28:47Z", - "expirationDateTime": "2021-05-15T17:28:47Z", + "jobId": "2b8ee14a-8711-4f0c-94c7-6d95b9713d84", + "lastUpdateDateTime": "2021-06-29T19:11:19Z", + "createdDateTime": "2021-06-29T19:11:18Z", + "expirationDateTime": "2021-06-30T19:11:18Z", "status": "succeeded", "errors": [], "results": { @@ -299,7 +299,7 @@ "length": 5, "text": "rapid", "category": "SymptomOrSign", - "confidenceScore": 0.98, + "confidenceScore": 0.93, "name": "Rapid", "links": [ { @@ -511,7 +511,7 @@ "length": 8, "text": "delirium", "category": "Diagnosis", - "confidenceScore": 0.91, + "confidenceScore": 0.97, "name": "Delirium", "links": [ { @@ -673,7 +673,7 @@ "length": 5, "text": "panic", "category": "Diagnosis", - "confidenceScore": 0.81, + "confidenceScore": 1.0, "name": "Panic", "links": [ { @@ -767,7 +767,7 @@ "length": 9, "text": "psychosis", "category": "Diagnosis", - "confidenceScore": 0.94, + "confidenceScore": 0.91, "name": "Psychotic Disorders", "links": [ { @@ -925,7 +925,7 @@ "length": 13, "text": "heart failure", "category": "Diagnosis", - "confidenceScore": 0.99, + "confidenceScore": 1.0, "name": "Heart failure", "links": [ { @@ -1084,7 +1084,7 @@ } ], "errors": [], - "modelVersion": "2021-03-01" + "modelVersion": "2021-05-15" } } } 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 b651693dc7c9..ceba80c73403 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-59504abce283fa47aa0e6ccd86f21c1e-815ffb8a8ae52646-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-b3fdbff0660a02499f0d32da79addb66-c19c810057c63a4e-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e51cbf87a321df02032925de5e6708b4", "x-ms-return-client-request-id": "true" }, @@ -29,342 +29,72 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "b5ab0681-1628-47a0-b44c-746d6957f0bd", - "Date": "Fri, 14 May 2021 17:28:17 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/7e8f3b58-4aff-455f-ba86-f52333d5be84", + "apim-request-id": "cd5f9d64-0aee-4cc9-88bb-1d129c118d65", + "Date": "Tue, 29 Jun 2021 19:10:58 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/5d197f04-7bac-4e69-af88-73377ffcfba0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "182" + "x-envoy-upstream-service-time": "207" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/7e8f3b58-4aff-455f-ba86-f52333d5be84?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/5d197f04-7bac-4e69-af88-73377ffcfba0?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2cdb69530701f208f175aa6a97e2593b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "18910007-bfc6-4227-9e11-acdd4c598d58", + "apim-request-id": "f9f1d0ff-b303-467e-b15a-bb56065ce346", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:17 GMT", + "Date": "Tue, 29 Jun 2021 19:10:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "7e8f3b58-4aff-455f-ba86-f52333d5be84", - "lastUpdateDateTime": "2021-05-14T17:28:18Z", - "createdDateTime": "2021-05-14T17:28:18Z", - "expirationDateTime": "2021-05-15T17:28:18Z", + "jobId": "5d197f04-7bac-4e69-af88-73377ffcfba0", + "lastUpdateDateTime": "2021-06-29T19:10:58Z", + "createdDateTime": "2021-06-29T19:10:58Z", + "expirationDateTime": "2021-06-30T19:10:58Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/7e8f3b58-4aff-455f-ba86-f52333d5be84?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/5d197f04-7bac-4e69-af88-73377ffcfba0?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a701cb20bb11a529608aebe12f36a48e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5d5de79a-74d4-4422-ba56-9bd0a9fc2c4c", + "apim-request-id": "100eddd3-8f0d-4706-aa31-5c8dd4f990d5", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:18 GMT", + "Date": "Tue, 29 Jun 2021 19:10:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "68" }, "ResponseBody": { - "jobId": "7e8f3b58-4aff-455f-ba86-f52333d5be84", - "lastUpdateDateTime": "2021-05-14T17:28:18Z", - "createdDateTime": "2021-05-14T17:28:18Z", - "expirationDateTime": "2021-05-15T17:28:18Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/7e8f3b58-4aff-455f-ba86-f52333d5be84?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.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": "a74db2d8-1fa4-4e34-a853-b7afbb7ba023", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28: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": "7e8f3b58-4aff-455f-ba86-f52333d5be84", - "lastUpdateDateTime": "2021-05-14T17:28:18Z", - "createdDateTime": "2021-05-14T17:28:18Z", - "expirationDateTime": "2021-05-15T17:28:18Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/7e8f3b58-4aff-455f-ba86-f52333d5be84?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.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": "de809404-db75-4fc0-99b5-3448cac625c3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28: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": "7e8f3b58-4aff-455f-ba86-f52333d5be84", - "lastUpdateDateTime": "2021-05-14T17:28:18Z", - "createdDateTime": "2021-05-14T17:28:18Z", - "expirationDateTime": "2021-05-15T17:28:18Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/7e8f3b58-4aff-455f-ba86-f52333d5be84?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.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": "ffc18449-9933-4af6-ad39-2388c79d73d9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:22 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": "7e8f3b58-4aff-455f-ba86-f52333d5be84", - "lastUpdateDateTime": "2021-05-14T17:28:18Z", - "createdDateTime": "2021-05-14T17:28:18Z", - "expirationDateTime": "2021-05-15T17:28:18Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/7e8f3b58-4aff-455f-ba86-f52333d5be84?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.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": "641c8a55-e7c4-4830-876a-1106e956dc2a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28: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": "7e8f3b58-4aff-455f-ba86-f52333d5be84", - "lastUpdateDateTime": "2021-05-14T17:28:18Z", - "createdDateTime": "2021-05-14T17:28:18Z", - "expirationDateTime": "2021-05-15T17:28:18Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/7e8f3b58-4aff-455f-ba86-f52333d5be84?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.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": "c283fe7d-e5aa-4ebf-bc39-03cac3bb4cbc", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28: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": "7e8f3b58-4aff-455f-ba86-f52333d5be84", - "lastUpdateDateTime": "2021-05-14T17:28:18Z", - "createdDateTime": "2021-05-14T17:28:18Z", - "expirationDateTime": "2021-05-15T17:28:18Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/7e8f3b58-4aff-455f-ba86-f52333d5be84?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.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": "b033fbfa-9301-4fbd-b4f3-7d88a03f850f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28: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": "7e8f3b58-4aff-455f-ba86-f52333d5be84", - "lastUpdateDateTime": "2021-05-14T17:28:18Z", - "createdDateTime": "2021-05-14T17:28:18Z", - "expirationDateTime": "2021-05-15T17:28:18Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/7e8f3b58-4aff-455f-ba86-f52333d5be84?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8d82601fd0a2f288ca9609f188453d42", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "05a7aae5-4c73-4bfb-ad40-aa7843cbbef9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28: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": "7e8f3b58-4aff-455f-ba86-f52333d5be84", - "lastUpdateDateTime": "2021-05-14T17:28:18Z", - "createdDateTime": "2021-05-14T17:28:18Z", - "expirationDateTime": "2021-05-15T17:28:18Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/7e8f3b58-4aff-455f-ba86-f52333d5be84?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1aceff570f15e77af81be7945406e6e5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e987c5b1-bafa-4f6a-942a-5d9864d13e4c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28: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": "7e8f3b58-4aff-455f-ba86-f52333d5be84", - "lastUpdateDateTime": "2021-05-14T17:28:18Z", - "createdDateTime": "2021-05-14T17:28:18Z", - "expirationDateTime": "2021-05-15T17:28:18Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/7e8f3b58-4aff-455f-ba86-f52333d5be84?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "10c2c9704337b9207b42887e744f35ae", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ecc0f340-2438-4554-878c-371027c1db53", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:29 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": "7e8f3b58-4aff-455f-ba86-f52333d5be84", - "lastUpdateDateTime": "2021-05-14T17:28:29Z", - "createdDateTime": "2021-05-14T17:28:18Z", - "expirationDateTime": "2021-05-15T17:28:18Z", + "jobId": "5d197f04-7bac-4e69-af88-73377ffcfba0", + "lastUpdateDateTime": "2021-06-29T19:10:59Z", + "createdDateTime": "2021-06-29T19:10:58Z", + "expirationDateTime": "2021-06-30T19:10:58Z", "status": "succeeded", "errors": [], "results": { @@ -555,7 +285,7 @@ "length": 5, "text": "rapid", "category": "SymptomOrSign", - "confidenceScore": 0.98, + "confidenceScore": 0.93, "name": "Rapid", "links": [ { @@ -767,7 +497,7 @@ "length": 8, "text": "delirium", "category": "Diagnosis", - "confidenceScore": 0.91, + "confidenceScore": 0.97, "name": "Delirium", "links": [ { @@ -929,7 +659,7 @@ "length": 5, "text": "panic", "category": "Diagnosis", - "confidenceScore": 0.81, + "confidenceScore": 1.0, "name": "Panic", "links": [ { @@ -1023,7 +753,7 @@ "length": 9, "text": "psychosis", "category": "Diagnosis", - "confidenceScore": 0.94, + "confidenceScore": 0.91, "name": "Psychotic Disorders", "links": [ { @@ -1181,7 +911,7 @@ "length": 13, "text": "heart failure", "category": "Diagnosis", - "confidenceScore": 0.99, + "confidenceScore": 1.0, "name": "Heart failure", "links": [ { @@ -1340,7 +1070,7 @@ } ], "errors": [], - "modelVersion": "2021-03-01" + "modelVersion": "2021-05-15" } } } 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 d8b5c62d0f1e..96d51438095f 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9df709d38166d4418c05d99cfadf19c4-00432ab613210440-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-850284f830c20d4592846b97bfc9afe5-5459da2faed53448-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "acdb13842ca5b9295fa84adf0c4870a8", "x-ms-return-client-request-id": "true" }, @@ -29,102 +29,132 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "2469cd45-fd35-4775-8e13-76584a10f6c1", - "Date": "Fri, 14 May 2021 17:28:48 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/44504355-87b3-44f3-bdd0-854128229a50", + "apim-request-id": "8effb6c5-50e1-47a7-9314-9ffbf0fb92b9", + "Date": "Tue, 29 Jun 2021 19:11:19 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/ab6cd217-b99d-48da-af3c-09fe8ef2b9ce", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "131" + "x-envoy-upstream-service-time": "188" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/44504355-87b3-44f3-bdd0-854128229a50?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/ab6cd217-b99d-48da-af3c-09fe8ef2b9ce?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1181511460ff1ed085a4ba80632c2cfd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bdc64594-a5f3-4c50-9f84-c60275dc4c86", + "apim-request-id": "141c2acc-faad-49e9-b8ec-0c6d8784fd39", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:48 GMT", + "Date": "Tue, 29 Jun 2021 19:11:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "44504355-87b3-44f3-bdd0-854128229a50", - "lastUpdateDateTime": "2021-05-14T17:28:49Z", - "createdDateTime": "2021-05-14T17:28:48Z", - "expirationDateTime": "2021-05-15T17:28:48Z", + "jobId": "ab6cd217-b99d-48da-af3c-09fe8ef2b9ce", + "lastUpdateDateTime": "2021-06-29T19:11:20Z", + "createdDateTime": "2021-06-29T19:11:20Z", + "expirationDateTime": "2021-06-30T19:11:20Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/44504355-87b3-44f3-bdd0-854128229a50?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/ab6cd217-b99d-48da-af3c-09fe8ef2b9ce?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d0605b7dc709a544ca5e0c1b0401dc1e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3c31298f-27a6-45e7-a992-de844e4d71f4", + "apim-request-id": "822698de-7f35-4341-b7f1-c6716393eb0e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:49 GMT", + "Date": "Tue, 29 Jun 2021 19:11:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "44504355-87b3-44f3-bdd0-854128229a50", - "lastUpdateDateTime": "2021-05-14T17:28:49Z", - "createdDateTime": "2021-05-14T17:28:48Z", - "expirationDateTime": "2021-05-15T17:28:48Z", + "jobId": "ab6cd217-b99d-48da-af3c-09fe8ef2b9ce", + "lastUpdateDateTime": "2021-06-29T19:11:20Z", + "createdDateTime": "2021-06-29T19:11:20Z", + "expirationDateTime": "2021-06-30T19:11:20Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/44504355-87b3-44f3-bdd0-854128229a50?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/ab6cd217-b99d-48da-af3c-09fe8ef2b9ce?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b5e59345e53b24c743bd270071a85633", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "060df53d-ebd0-41b2-b9e4-6763cbcd17a1", + "apim-request-id": "a263f90d-6b96-4092-9c11-678e54b93c06", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:11:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "ab6cd217-b99d-48da-af3c-09fe8ef2b9ce", + "lastUpdateDateTime": "2021-06-29T19:11:20Z", + "createdDateTime": "2021-06-29T19:11:20Z", + "expirationDateTime": "2021-06-30T19:11:20Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/ab6cd217-b99d-48da-af3c-09fe8ef2b9ce?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b0624d7ba0e84c9f0cdc46a153b41a84", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2d634a8f-963d-436c-9fe0-2a9ac2d0c944", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:50 GMT", + "Date": "Tue, 29 Jun 2021 19:11:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "37" + "x-envoy-upstream-service-time": "60" }, "ResponseBody": { - "jobId": "44504355-87b3-44f3-bdd0-854128229a50", - "lastUpdateDateTime": "2021-05-14T17:28:50Z", - "createdDateTime": "2021-05-14T17:28:48Z", - "expirationDateTime": "2021-05-15T17:28:48Z", + "jobId": "ab6cd217-b99d-48da-af3c-09fe8ef2b9ce", + "lastUpdateDateTime": "2021-06-29T19:11:23Z", + "createdDateTime": "2021-06-29T19:11:20Z", + "expirationDateTime": "2021-06-30T19:11:20Z", "status": "succeeded", "errors": [], "results": { @@ -315,7 +345,7 @@ "length": 5, "text": "rapid", "category": "SymptomOrSign", - "confidenceScore": 0.98, + "confidenceScore": 0.93, "name": "Rapid", "links": [ { @@ -527,7 +557,7 @@ "length": 8, "text": "delirium", "category": "Diagnosis", - "confidenceScore": 0.91, + "confidenceScore": 0.97, "name": "Delirium", "links": [ { @@ -689,7 +719,7 @@ "length": 5, "text": "panic", "category": "Diagnosis", - "confidenceScore": 0.81, + "confidenceScore": 1.0, "name": "Panic", "links": [ { @@ -783,7 +813,7 @@ "length": 9, "text": "psychosis", "category": "Diagnosis", - "confidenceScore": 0.94, + "confidenceScore": 0.91, "name": "Psychotic Disorders", "links": [ { @@ -941,7 +971,7 @@ "length": 13, "text": "heart failure", "category": "Diagnosis", - "confidenceScore": 0.99, + "confidenceScore": 1.0, "name": "Heart failure", "links": [ { @@ -1100,7 +1130,7 @@ } ], "errors": [], - "modelVersion": "2021-03-01" + "modelVersion": "2021-05-15" } } } 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 ba422c09e08d..b57ee41afb89 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c96eff11120b5b48a7ac470fbbda46d9-9e840f9372fec047-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-84ede863317a104ea43a610a7e64adca-3495cb763d033249-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0e649e128b084513c9c62e584c5f813b", "x-ms-return-client-request-id": "true" }, @@ -29,72 +29,132 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "443fd8bf-c59a-4bdf-8bad-cfb55ee12124", - "Date": "Fri, 14 May 2021 17:28:31 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/3dc11baf-82e5-41f5-a2a4-ac0dd1ecd32d", + "apim-request-id": "68f68039-a0fb-4f22-afdf-8bd3a36f4030", + "Date": "Tue, 29 Jun 2021 19:10:59 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/b29f4dee-4b82-4952-ba7d-5e6d94e29385", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "94" + "x-envoy-upstream-service-time": "254" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/3dc11baf-82e5-41f5-a2a4-ac0dd1ecd32d?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/b29f4dee-4b82-4952-ba7d-5e6d94e29385?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "796705c1528f3adf8bba34f0a8f2bd37", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4420a1c8-290e-4450-a683-1e2389972cb4", + "apim-request-id": "cd9ec2b1-2d78-4442-a4fc-709eb17d277b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:32 GMT", + "Date": "Tue, 29 Jun 2021 19:11:00 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": "13" }, "ResponseBody": { - "jobId": "3dc11baf-82e5-41f5-a2a4-ac0dd1ecd32d", - "lastUpdateDateTime": "2021-05-14T17:28:31Z", - "createdDateTime": "2021-05-14T17:28:31Z", - "expirationDateTime": "2021-05-15T17:28:31Z", + "jobId": "b29f4dee-4b82-4952-ba7d-5e6d94e29385", + "lastUpdateDateTime": "2021-06-29T19:11:00Z", + "createdDateTime": "2021-06-29T19:10:59Z", + "expirationDateTime": "2021-06-30T19:10:59Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/3dc11baf-82e5-41f5-a2a4-ac0dd1ecd32d?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/b29f4dee-4b82-4952-ba7d-5e6d94e29385?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "740ea8ad2ce006c130b149d1ae645358", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "85fa5f9a-9c00-4a18-958e-3fb149af5274", + "apim-request-id": "c43bf6f3-e314-432d-8c4c-88437f5c756e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:11:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "b29f4dee-4b82-4952-ba7d-5e6d94e29385", + "lastUpdateDateTime": "2021-06-29T19:11:00Z", + "createdDateTime": "2021-06-29T19:10:59Z", + "expirationDateTime": "2021-06-30T19:10:59Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/b29f4dee-4b82-4952-ba7d-5e6d94e29385?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "07effce6ecdcc068be2a834d57229cd7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1389f4df-f674-4f71-a464-9a44189ee944", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 29 Jun 2021 19:11:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "b29f4dee-4b82-4952-ba7d-5e6d94e29385", + "lastUpdateDateTime": "2021-06-29T19:11:00Z", + "createdDateTime": "2021-06-29T19:10:59Z", + "expirationDateTime": "2021-06-30T19:10:59Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/b29f4dee-4b82-4952-ba7d-5e6d94e29385?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a4abf7090d51955a436148dd080e8c26", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cb96bd68-d166-41cc-82b2-026479945a0d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:33 GMT", + "Date": "Tue, 29 Jun 2021 19:11:03 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": "74" }, "ResponseBody": { - "jobId": "3dc11baf-82e5-41f5-a2a4-ac0dd1ecd32d", - "lastUpdateDateTime": "2021-05-14T17:28:32Z", - "createdDateTime": "2021-05-14T17:28:31Z", - "expirationDateTime": "2021-05-15T17:28:31Z", + "jobId": "b29f4dee-4b82-4952-ba7d-5e6d94e29385", + "lastUpdateDateTime": "2021-06-29T19:11:03Z", + "createdDateTime": "2021-06-29T19:10:59Z", + "expirationDateTime": "2021-06-30T19:10:59Z", "status": "succeeded", "errors": [], "results": { @@ -285,7 +345,7 @@ "length": 5, "text": "rapid", "category": "SymptomOrSign", - "confidenceScore": 0.98, + "confidenceScore": 0.93, "name": "Rapid", "links": [ { @@ -497,7 +557,7 @@ "length": 8, "text": "delirium", "category": "Diagnosis", - "confidenceScore": 0.91, + "confidenceScore": 0.97, "name": "Delirium", "links": [ { @@ -659,7 +719,7 @@ "length": 5, "text": "panic", "category": "Diagnosis", - "confidenceScore": 0.81, + "confidenceScore": 1.0, "name": "Panic", "links": [ { @@ -753,7 +813,7 @@ "length": 9, "text": "psychosis", "category": "Diagnosis", - "confidenceScore": 0.94, + "confidenceScore": 0.91, "name": "Psychotic Disorders", "links": [ { @@ -911,7 +971,7 @@ "length": 13, "text": "heart failure", "category": "Diagnosis", - "confidenceScore": 0.99, + "confidenceScore": 1.0, "name": "Heart failure", "links": [ { @@ -1070,7 +1130,7 @@ } ], "errors": [], - "modelVersion": "2021-03-01" + "modelVersion": "2021-05-15" } } } 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 a22d397a9439..a1a80c9b519d 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9626d12d22820444a6dafc92737675bf-6249e8053b4e3246-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f5a21eed213a314b81677f299998e2f5-93d5b5631a5f2d4a-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ac50657e0564f29f4cf677ed0a13f18a", "x-ms-return-client-request-id": "true" }, @@ -29,102 +29,102 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "d7c67ac3-b43e-4af0-a7c6-820dafff330b", - "Date": "Fri, 14 May 2021 17:28:52 GMT", - "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/b9461277-7e73-4d75-8a62-884c952c5d97", + "apim-request-id": "2fdec537-dcaf-4599-811d-8d7a9db0841a", + "Date": "Tue, 29 Jun 2021 19:11:23 GMT", + "operation-location": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/1af3c34b-fff1-4198-a0be-3ec5aa6b5ccb", "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": "167" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/b9461277-7e73-4d75-8a62-884c952c5d97?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/1af3c34b-fff1-4198-a0be-3ec5aa6b5ccb?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ee06e8ec9851bf144fa0b3348eac9147", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3249decc-2d9a-4a0b-ae57-597137dcfc5c", + "apim-request-id": "c69a48ec-b545-49bd-87f1-f18b1612083f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:53 GMT", + "Date": "Tue, 29 Jun 2021 19:11:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "b9461277-7e73-4d75-8a62-884c952c5d97", - "lastUpdateDateTime": "2021-05-14T17:28:53Z", - "createdDateTime": "2021-05-14T17:28:53Z", - "expirationDateTime": "2021-05-15T17:28:53Z", + "jobId": "1af3c34b-fff1-4198-a0be-3ec5aa6b5ccb", + "lastUpdateDateTime": "2021-06-29T19:11:24Z", + "createdDateTime": "2021-06-29T19:11:23Z", + "expirationDateTime": "2021-06-30T19:11:23Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/b9461277-7e73-4d75-8a62-884c952c5d97?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/1af3c34b-fff1-4198-a0be-3ec5aa6b5ccb?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c56f00a8f06aed051c550a52700d0abf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fcc7989b-7d39-4d5e-bb04-d560c6867202", + "apim-request-id": "063714c4-aa84-40b0-9191-027c3fc2d129", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:54 GMT", + "Date": "Tue, 29 Jun 2021 19:11: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": "10" }, "ResponseBody": { - "jobId": "b9461277-7e73-4d75-8a62-884c952c5d97", - "lastUpdateDateTime": "2021-05-14T17:28:53Z", - "createdDateTime": "2021-05-14T17:28:53Z", - "expirationDateTime": "2021-05-15T17:28:53Z", - "status": "notStarted", + "jobId": "1af3c34b-fff1-4198-a0be-3ec5aa6b5ccb", + "lastUpdateDateTime": "2021-06-29T19:11:24Z", + "createdDateTime": "2021-06-29T19:11:23Z", + "expirationDateTime": "2021-06-30T19:11:23Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/health/jobs/b9461277-7e73-4d75-8a62-884c952c5d97?showStats=false", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/health/jobs/1af3c34b-fff1-4198-a0be-3ec5aa6b5ccb?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c9cabda7fe2ee58e51915dc3526b639f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f0236700-0e7b-4042-b0a4-bd9e567dd5ca", + "apim-request-id": "43fd117d-99de-4206-a4c1-4e8f418f1abb", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 May 2021 17:28:55 GMT", + "Date": "Tue, 29 Jun 2021 19:11:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-envoy-upstream-service-time": "71" }, "ResponseBody": { - "jobId": "b9461277-7e73-4d75-8a62-884c952c5d97", - "lastUpdateDateTime": "2021-05-14T17:28:55Z", - "createdDateTime": "2021-05-14T17:28:53Z", - "expirationDateTime": "2021-05-15T17:28:53Z", + "jobId": "1af3c34b-fff1-4198-a0be-3ec5aa6b5ccb", + "lastUpdateDateTime": "2021-06-29T19:11:25Z", + "createdDateTime": "2021-06-29T19:11:23Z", + "expirationDateTime": "2021-06-30T19:11:23Z", "status": "succeeded", "errors": [], "results": { @@ -315,7 +315,7 @@ "length": 5, "text": "rapid", "category": "SymptomOrSign", - "confidenceScore": 0.98, + "confidenceScore": 0.93, "name": "Rapid", "links": [ { @@ -527,7 +527,7 @@ "length": 8, "text": "delirium", "category": "Diagnosis", - "confidenceScore": 0.91, + "confidenceScore": 0.97, "name": "Delirium", "links": [ { @@ -689,7 +689,7 @@ "length": 5, "text": "panic", "category": "Diagnosis", - "confidenceScore": 0.81, + "confidenceScore": 1.0, "name": "Panic", "links": [ { @@ -783,7 +783,7 @@ "length": 9, "text": "psychosis", "category": "Diagnosis", - "confidenceScore": 0.94, + "confidenceScore": 0.91, "name": "Psychotic Disorders", "links": [ { @@ -941,7 +941,7 @@ "length": 13, "text": "heart failure", "category": "Diagnosis", - "confidenceScore": 0.99, + "confidenceScore": 1.0, "name": "Heart failure", "links": [ { @@ -1100,7 +1100,7 @@ } ], "errors": [], - "modelVersion": "2021-03-01" + "modelVersion": "2021-05-15" } } } 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 b97a2c5a50b2..b5e04813f391 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-561eca2dcd4580478a3a809f47c8a4dc-3dfff1eec6c85e41-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-974dcc49f5e2124bb5136cb38dd82519-03f332cdbeb0664f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d727f8b3ab5caeec2a15d6a3b1743ade", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "72717884-ecc1-4769-affd-9dd57bc60b22", + "apim-request-id": "be61ce70-a005-4915-afec-c0f98c12138e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:08:40 GMT", + "Date": "Tue, 29 Jun 2021 19:11:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "documents": [ @@ -134,7 +134,7 @@ } ], "errors": [], - "modelVersion": "2020-02-01" + "modelVersion": "2021-06-01" } } ], 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 ed10beacbecd..a13af06466b2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0bdd9c3ddc7d2a4882e68e88c1e110f1-29b7e62a86b61849-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-1a2f9fc9761fa24790828a26ffd1a2dc-41c425e8fba68b49-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "476534efbdc7cda5ab406b046713b5b6", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "63eb755e-dd68-455b-ab87-96498546d530", + "apim-request-id": "bcea59c9-f4e5-4de4-a106-d27c65473f36", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:08:56 GMT", + "Date": "Tue, 29 Jun 2021 19:11:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "documents": [ @@ -134,7 +134,7 @@ } ], "errors": [], - "modelVersion": "2020-02-01" + "modelVersion": "2021-06-01" } } ], 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 2dacba069b0f..991581e48512 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c8a6713a6c4ca64a86d29bd2d0484234-c68d5f4c787dab4f-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-6b8abb8e8d0db749a8ef6c197f836343-e99986c22c96e04b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "297e980ed9e8189820ebd45ff129bc5c", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "75fe93a6-80b5-4f25-932c-d4e5f8cd9e91", + "apim-request-id": "1ccae395-b12f-4ff0-95ae-3cefb67dcae7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:08:40 GMT", + "Date": "Tue, 29 Jun 2021 19:11:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "statistics": { @@ -148,7 +148,7 @@ } ], "errors": [], - "modelVersion": "2020-02-01" + "modelVersion": "2021-06-01" } } ], 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 c386a437d62f..a49e984ece19 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-917ddfd942cf6f4882103328db2cb637-9de9f050575af241-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-21f8e8e504e331479483ffa7ea8cc940-21c0d3de0d157949-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "efbfe45b25f6d2a2775e1edd2fe4e7aa", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8d8309dc-b531-4497-8b82-32a6fc7086d9", + "apim-request-id": "b21a3a86-9615-49bb-b9be-d9d57eaea27f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:08:57 GMT", + "Date": "Tue, 29 Jun 2021 19:11:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "statistics": { @@ -148,7 +148,7 @@ } ], "errors": [], - "modelVersion": "2020-02-01" + "modelVersion": "2021-06-01" } } ], 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 b036ff0de549..73610f77fe8d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "190", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c9cac19918a17341839714397bb56a26-9f337b36cb70094d-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-6c00529ce753514a8fda82964cb2d23a-f5088bc155080c41-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "70aff255bc0a587f23734ec6facb2924", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d1ba43cc-0820-4af2-b18b-90e6643ddff7", + "apim-request-id": "f08b8edd-6f0b-4a0a-ad62-34797fca1dff", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:08:43 GMT", + "Date": "Tue, 29 Jun 2021 19:11:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2529" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "documents": [ @@ -150,7 +150,7 @@ } ], "errors": [], - "modelVersion": "2020-02-01" + "modelVersion": "2021-06-01" } } ], 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 030413d4267b..59feb4b68712 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "190", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8627d09c90f7ca4f95cf9a9d3a8022cb-0467d1f9615b3245-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-47d590db789ab04e912b609575a7a8f2-150654b59baaa44b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b6c8d0c26960e1039b6b5addff48c5fe", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2dd2228f-97f7-489b-84c3-af51babd3455", + "apim-request-id": "0dec4950-6064-48ff-8610-22de5bbbcdf3", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:08:57 GMT", + "Date": "Tue, 29 Jun 2021 19:11:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "documents": [ @@ -150,7 +150,7 @@ } ], "errors": [], - "modelVersion": "2020-02-01" + "modelVersion": "2021-06-01" } } ], 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 d512454c2efd..9dedba261395 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "229", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7bb8df1dd7488a4a94a7db7fd4af5a19-c5ccbb622d403643-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-f95866ee330a5a47afe3ed50cd0f588e-47b5fe97a2d0d44a-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1199dc8afc6a0ac5f0743171c35d6934", "x-ms-return-client-request-id": "true" }, @@ -34,14 +34,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8733645a-2c48-4664-87dd-05fbd051e585", + "apim-request-id": "123ec1b4-1bc7-428e-8de0-bfd1dbc86b9f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:08:43 GMT", + "Date": "Tue, 29 Jun 2021 19:11:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "documents": [ @@ -151,7 +151,7 @@ } } ], - "modelVersion": "2020-02-01" + "modelVersion": "2021-06-01" } } ], 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 0ea16a8eb726..6c0fb9668cc1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "229", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6d9d10d77b33d84694e4a08fb36da6b9-7cfd3e478a873a4a-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-7f156b670ae8c645a09f37ac9356a1a2-0d8caca6b453b749-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4f030e46456aaab2ab975c8325cfab86", "x-ms-return-client-request-id": "true" }, @@ -34,14 +34,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1fa0b807-390f-4d45-ae3d-248b8bb824e3", + "apim-request-id": "e439d02f-0867-44db-b7b8-8a6319c0e3dc", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:08:57 GMT", + "Date": "Tue, 29 Jun 2021 19:11:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "documents": [ @@ -151,7 +151,7 @@ } } ], - "modelVersion": "2020-02-01" + "modelVersion": "2021-06-01" } } ], 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 c30832253a21..3c8ab2c64360 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "561", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b35baf5f4db6be4a97285254d636c558-716d0df8dae4a141-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-41a8c7141cd0074f85912978589fc84d-bc638f570af37541-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "192c3c1f91647770ee90b0e32a189a79", "x-ms-return-client-request-id": "true" }, @@ -49,13 +49,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "945087a2-5524-48db-8f48-21e16ce9b6c1", + "apim-request-id": "7e944b30-3c49-4d2c-985c-7dda4f225938", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 11 May 2021 16:08:43 GMT", + "Date": "Tue, 29 Jun 2021 19:11:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json index 83dd6212c063..1a48bbf2186b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "561", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c588b91019d66046a505d1330401b253-96c670053ed9e847-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-076ab24e4afe5c4c968e05a1e65d8ff2-64f22294d8b3814a-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "aa01d6b77b2b2d76ec0e72d5ad5d4024", "x-ms-return-client-request-id": "true" }, @@ -49,13 +49,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "96b767f4-d66d-422b-a8bd-04a370641109", + "apim-request-id": "d0bf100a-ecb8-4e06-aacb-e88dbc4f8721", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 11 May 2021 16:08:57 GMT", + "Date": "Tue, 29 Jun 2021 19:11:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json index c85ad2ed4e16..5a25902ff0a7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-dedc225c2d91eb46a2976c229ec411f9-17a0734a5ff5cf43-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-acc691751e2997408207e6e484a8d730-d47f54b944c46a4d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "39e775856c33e5040de74ed9f57d5d06", "x-ms-return-client-request-id": "true" }, @@ -24,13 +24,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "589deef7-d018-4da5-b83b-c7abcb6f1f76", + "apim-request-id": "30ae4554-3f4d-4527-8d1b-5c4d86c67372", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 11 May 2021 16:08:43 GMT", + "Date": "Tue, 29 Jun 2021 19:11:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json index 1ca87849903e..18c0205a3841 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-887e29d3773dda47b624d879c8ec397e-2457a9a710ec0148-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-a85440cce910aa45a5e6d72b302adee5-7e68ee4f85518944-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9f2af246abde141d1e5ee3f98d0120cc", "x-ms-return-client-request-id": "true" }, @@ -24,13 +24,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "d3d31438-a527-46e0-a320-dbc83459f7ed", + "apim-request-id": "5c343552-6a3e-43a9-88b1-23d381a18fe5", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 11 May 2021 16:08:57 GMT", + "Date": "Tue, 29 Jun 2021 19:11:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json index aff7d72a09da..e2c71f8aad8b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-188cfa9e7553074181cf5a9d7966012c-a90c17dc5ab5ef4d-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-4d15fcf99da62e4d8c8d7bcc3525e87e-391d479dea403b43-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "73d297ac9bb0c1f746fd7bde1da9241c", "x-ms-return-client-request-id": "true" }, @@ -24,9 +24,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e8449ba4-3a65-45ce-8ec1-62db5be9f83b", + "apim-request-id": "907fb2af-b185-4de3-a0ed-73d0d5d38da0", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 11 May 2021 16:08:43 GMT", + "Date": "Tue, 29 Jun 2021 19:11:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", @@ -47,7 +47,7 @@ } } ], - "modelVersion": "2020-02-01" + "modelVersion": "2021-06-01" } } ], 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 ebc07ae15f14..d890c4e62292 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-75671ea366054045abac68628e8feba6-0be542731cc16643-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-91bc1aad6e2d674abac9597d6d56bc16-21463f1f73f89242-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "eb53c4f0f4de762a1a8dd9e931cc3cf8", "x-ms-return-client-request-id": "true" }, @@ -24,9 +24,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dc5eabdb-ba3a-4950-a575-ebfce8dd07bd", + "apim-request-id": "0e30eb36-63a0-4d15-abf8-7c72352dc016", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 11 May 2021 16:08:57 GMT", + "Date": "Tue, 29 Jun 2021 19:11:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", @@ -47,7 +47,7 @@ } } ], - "modelVersion": "2020-02-01" + "modelVersion": "2021-06-01" } } ], 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 149355e58951..81f19c6d0e46 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "190", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-157aa2343511b1429c3806d13792690d-ad9a83d225c3a44b-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-7a66550d014d5f42bfbea7e1bc0d30d6-b51e821f18d92248-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "07178a1f00e9eae492911a1486f7f75f", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3204a658-d94b-4451-821e-6dec10728fdf", + "apim-request-id": "9bcb4d9f-ad33-4610-98d6-421a262eca82", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:08:54 GMT", + "Date": "Tue, 29 Jun 2021 19:11:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5030" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "statistics": { @@ -164,7 +164,7 @@ } ], "errors": [], - "modelVersion": "2020-02-01" + "modelVersion": "2021-06-01" } } ], 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 fc7a19e481f9..93e00e45f685 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "190", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c905a2306ef58f4592004a3fda6b8998-1d4688f6878a504a-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-536123988b337740a965b21695464ad0-a5a7466cf0b88842-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c81f2c7c8424b466b144609b6251448a", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ccab82b8-9c01-409d-acd3-75cd2fac6275", + "apim-request-id": "3466bd53-7407-4c68-bd9e-2715288e5eea", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:09:00 GMT", + "Date": "Tue, 29 Jun 2021 19:11:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2520" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "statistics": { @@ -164,7 +164,7 @@ } ], "errors": [], - "modelVersion": "2020-02-01" + "modelVersion": "2021-06-01" } } ], 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 ab4dc6d5208b..0457efd867b9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/linking?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-03ae3945f942d24d8356243b067c4c78-4e119b69e7144449-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-25ade93444a4a749a56572f7c85f7bbf-c06ed27862202f44-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5dbd0e4d74f1991eb1c26555a87606e8", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "124dad35-1b0b-4f9b-82f6-8418a65b87e6", + "apim-request-id": "27c1ca17-bd8f-47bd-9020-8ae7f7cd37e8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:08:55 GMT", + "Date": "Tue, 29 Jun 2021 19:11:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "documents": [ @@ -91,7 +91,7 @@ } ], "errors": [], - "modelVersion": "2020-02-01" + "modelVersion": "2021-06-01" } } ], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json index 7ebfc199d9ed..796ea88eee47 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/linking?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-659a112220759745aac462138c83c00e-75de56f55dffa14d-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-974d852a9e8f044bbcd7130ccd3ce3b0-33e3598c00b72243-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "552924120f9751fcf8de062c168ba5ca", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4f5ae8f2-45a3-4c5e-b882-9884f4e316a3", + "apim-request-id": "6e5cddff-d5f6-4e43-adb7-f194a9286ed3", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:09:01 GMT", + "Date": "Tue, 29 Jun 2021 19:11:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "documents": [ @@ -91,7 +91,7 @@ } ], "errors": [], - "modelVersion": "2020-02-01" + "modelVersion": "2021-06-01" } } ], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json index 94459f62d4ee..f50df352822d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/linking?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ec6796b5567c2a4db059d17886169a18-a3405b94c376a444-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-58eb11bea3ead144b3f2fcf4b9a5a554-7639a34069698845-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "934878dc21c8a0a984e7d2d9ad60c773", "x-ms-return-client-request-id": "true" }, @@ -24,10 +24,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "39635dc0-9d06-4247-98d1-40c8e042cebc", + "apim-request-id": "4b443955-ada6-4c88-a209-04bcf7c4d659", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:08:56 GMT", + "Date": "Tue, 29 Jun 2021 19:11:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", @@ -91,7 +91,7 @@ } ], "errors": [], - "modelVersion": "2020-02-01" + "modelVersion": "2021-06-01" } } ], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json index 067c2e57d769..18564962f92d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/linking?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5024a55026b202458fdacfbce4610f25-6528c0d51452c746-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-f477afabdadc73459476beed0432a7e6-6e8e0759d65df244-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "25dfcc445911727a9003f8f77dc4c2e5", "x-ms-return-client-request-id": "true" }, @@ -24,10 +24,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "18d649ea-8c9a-498a-8b10-f911281c0072", + "apim-request-id": "ad6e2d7f-34fc-476d-b93c-5c76d527c1f6", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:09:02 GMT", + "Date": "Tue, 29 Jun 2021 19:11:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", @@ -91,7 +91,7 @@ } ], "errors": [], - "modelVersion": "2020-02-01" + "modelVersion": "2021-06-01" } } ], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json index 456f815f2efa..813edd15c0ce 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "316", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5d998aed2ce13e40baf9e7f203d33bbd-5392ca15f649f54b-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-ffc6806be44ae242a09a2ce23e066465-05745a290c9e694c-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4f9f78c612dc4ff4e6424ecbf4774e1d", "x-ms-return-client-request-id": "true" }, @@ -29,10 +29,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "aeb4ea5e-eea1-4359-8b3d-ccaa7a3bd84e", + "apim-request-id": "4d13f2c4-8831-4ad5-96aa-74b61abd87d3", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 14 May 2021 17:21:42 GMT", + "Date": "Tue, 29 Jun 2021 19:11:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json index 2c03e5fbb8be..8bdc7c051f94 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "316", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9173a5c00c59754ea788bfd08576562e-781d9ea5d5e4784f-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-62428eb6dffa014487d8256bb6101f1b-cfc97a086cc4db47-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "36b692faddb1a4a1de76fbe750ec63aa", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7b637e14-bdf3-44f1-b48a-1d128800547d", + "apim-request-id": "ab28d9d3-7d18-41ce-9243-37a9d30e575c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 14 May 2021 17:21:45 GMT", + "Date": "Tue, 29 Jun 2021 19:11:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json index 6dd49e113517..2e531067640c 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/pii?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "316", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1b704463b0438d438090aa64de0c7976-d369761519008645-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-7f199b830879ec4fb84c6b64495bd5e3-784cbb2f1b113f4f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "04ded076a7d1ef20d826d8bd22d2f313", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dc51542e-9678-4f54-9e27-de71c9e6f33e", + "apim-request-id": "cb1ffae4-5462-45ab-af73-859e1ba89400", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 14 May 2021 17:21:42 GMT", + "Date": "Tue, 29 Jun 2021 19:11:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-envoy-upstream-service-time": "32" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json index 5e549fa4eb75..7c894891814e 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/pii?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "316", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b87f5ca5c09d8345bd88519858367940-9dfec4ea5c754b4f-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-4bb7af67084dce4bad00598270588988-e60ec9c2917c3142-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7d30af30e956cc708b0d87dfbe6db16a", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fb30c8df-2f3e-4985-8c0f-bab021968225", + "apim-request-id": "8ec3840c-d89e-4879-911f-01a9ee94e904", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 14 May 2021 17:21:45 GMT", + "Date": "Tue, 29 Jun 2021 19:11:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json index 386843e709ea..3117eeedd749 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "316", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f86db3f0b3ae684797f8a7d22d3c3aa5-fdef495a99909440-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-8b55a3d0eb527f40991749767aca36b3-9b446769dd340744-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6f9cd824ddbc141e7abad022a25067fc", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eb973c62-529f-4dbb-b8c4-152a37d1d17e", + "apim-request-id": "3b6a3d71-a0de-4201-8f86-6dd3ffb0a764", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 14 May 2021 17:21:42 GMT", + "Date": "Tue, 29 Jun 2021 19:11:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-envoy-upstream-service-time": "5041" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json index 22734bf55d66..1ce281a4430c 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "316", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6b03b9d325e14f4aa8aef5d62dd151a9-c309373060196e4c-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-9f8511d45ff00340907240502eb4236b-39830d4c2691b646-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d3c06bb4da2c08c1ac14eaea49cdb0bb", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a4fbcccc-b55f-401b-8cf8-c1fd52eafa42", + "apim-request-id": "7591cf96-7611-4318-a401-cba0f545a841", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 14 May 2021 17:21:45 GMT", + "Date": "Tue, 29 Jun 2021 19:11:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "documents": [ 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 38be5bbf0aab..f37f532ebeef 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PhoneNumber", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PhoneNumber", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "316", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d1f28eff283f094a92dc27f00a6a3000-1377889f17dfa04d-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-1f6411b3a99282458bf918e035e9467c-4e3bbe74b273634f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "940d68c3ae74cfe85a8c9b6ff397927c", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1f50ca68-0d12-4ada-a483-d30bfdc29278", + "apim-request-id": "970374f4-3d7c-41d1-bf86-c5c90b578f96", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:09:02 GMT", + "Date": "Tue, 29 Jun 2021 19:11: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-envoy-upstream-service-time": "34" }, "ResponseBody": { "documents": [ 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 2fdbf0254fe5..5afc66a44dba 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PhoneNumber", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PhoneNumber", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "316", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5dafc3e73a549f48b7dddf29547c6696-8e3fd48cf267b34d-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-657ac623dc8b574f9cfe620a9227faff-574ead732b30aa4e-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "be97255b3654fe9185dbe071fa756db5", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ad39e342-c0bd-4ceb-b043-a8ff00b770dd", + "apim-request-id": "132df566-28a7-48f1-bc54-363a75b9a1a4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:09:07 GMT", + "Date": "Tue, 29 Jun 2021 19:11:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "776" }, "ResponseBody": { "documents": [ 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 031d3881e2d9..9251202631a2 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=false\u0026domain=phi\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/pii?showStats=false\u0026domain=phi\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "316", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-03b12a396c69be4aa1793be9a05a3037-2001606187bf0242-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-e7bf2a1f541aae458459c3506c5dd80f-99b801560eff2a4d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9567a6ab75c1c0186e6c0910f26b92ac", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "aa49dd64-9f87-4ae3-862f-bfc4c9177bb9", + "apim-request-id": "ab5a0a1a-29e7-4bfb-85b6-027220793f7b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:09:03 GMT", + "Date": "Tue, 29 Jun 2021 19:11: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-envoy-upstream-service-time": "36" }, "ResponseBody": { "documents": [ 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 b5d86f08dc08..226d82106dc6 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=false\u0026domain=phi\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/pii?showStats=false\u0026domain=phi\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "316", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-721b62b6e2b72744a24ed8b052fc46e1-d78fe6159abe0246-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-3375459e7aa24449aba407c2f8bfa2ee-8f901af5f79ed142-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ad760dfb47a56942a81a4fab59b3d969", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "87f37e1a-93e5-4ebb-a510-847a0e6610cf", + "apim-request-id": "53b08306-8a12-41c7-afda-fac04101e241", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:09:07 GMT", + "Date": "Tue, 29 Jun 2021 19:11:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json index 921e3771d4b5..3dfdb011b54e 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "331", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fab02ed32db49c4c9d24252f764a3aa5-d63b5150e8663246-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-6f27e418e6db3b40b17aef70623c7980-045e1e31e9a77046-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e382b2e96bf3675f4d7d7960b8b32916", "x-ms-return-client-request-id": "true" }, @@ -34,21 +34,28 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "51a4914a-2719-4884-ae01-6adecd13ef7e", + "apim-request-id": "585dec81-2e1e-4212-b5b4-4ea04c44116b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:09:03 GMT", + "Date": "Tue, 29 Jun 2021 19:11: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-envoy-upstream-service-time": "33" }, "ResponseBody": { "documents": [ { - "redactedText": "A developer with SSN *********** whose phone number is ************ is building tools with our APIs.", + "redactedText": "A ********* with SSN *********** whose phone number is ************ is building tools with our APIs.", "id": "0", "entities": [ + { + "text": "developer", + "category": "PersonType", + "offset": 2, + "length": 9, + "confidenceScore": 0.97 + }, { "text": "859-98-0987", "category": "USSocialSecurityNumber", 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 31330d3e5882..db575a89a28b 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "331", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e5089974d4f5894099d6d2f6b12fb11d-ce1f5840a825f344-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-edff79de3a141d4ea9f3b6c1d321d13f-91b59504bea7474c-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e218864f9605e01c86941869a0be6841", "x-ms-return-client-request-id": "true" }, @@ -34,21 +34,28 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "148313ff-aabb-44c4-98f2-2727632f35d0", + "apim-request-id": "fbd7229d-e8c9-4ae4-b7e9-5b24134c49cb", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Tue, 11 May 2021 16:09:07 GMT", + "Date": "Tue, 29 Jun 2021 19:11:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-envoy-upstream-service-time": "33" }, "ResponseBody": { "documents": [ { - "redactedText": "A developer with SSN *********** whose phone number is ************ is building tools with our APIs.", + "redactedText": "A ********* with SSN *********** whose phone number is ************ is building tools with our APIs.", "id": "0", "entities": [ + { + "text": "developer", + "category": "PersonType", + "offset": 2, + "length": 9, + "confidenceScore": 0.97 + }, { "text": "859-98-0987", "category": "USSocialSecurityNumber", 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 670fb4c03208..35100fd111b7 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/pii?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "316", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5264fc0b9a8f8840b2e8fe732bd6b1b5-18f8a17622fe6c40-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-869d190a5f1e554f93a5d2db19b4d93f-8619ccdc159ebe4f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "31f09c56057d756e3c532a93aa2edb35", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "99224061-39ed-41ec-99a8-f835c390214a", + "apim-request-id": "7641c1b0-35ae-4d53-b599-41ad6d39ecc1", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 14 May 2021 17:21:42 GMT", + "Date": "Tue, 29 Jun 2021 19:11: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-envoy-upstream-service-time": "36" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json index 2122a036373c..c8e3656e30b7 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/pii?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "316", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9955c756a806cd4eabb481439c428ee4-b6bd52197fabdb47-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-c7780a5818e9ea40abd7db7b03bb0167-4fdc9ebc428be64f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f7aa1943432514c18c4fe7b77ff7d7b3", "x-ms-return-client-request-id": "true" }, @@ -29,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "da3213fd-e2b0-424b-93ae-6b9c15d1dceb", + "apim-request-id": "6ac85949-e56e-4a8f-bb92-8be7220f7587", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2,CognitiveServices.TextAnalytics.TextRecords=2", - "Date": "Fri, 14 May 2021 17:21:45 GMT", + "Date": "Tue, 29 Jun 2021 19:11:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json index a199b5ba3210..2b4ae2986e32 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "175", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b560ce33efa03046a08d2793309ff625-83650ff277145d46-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-96810f286ba64448abae98b8e600bcde-c6433662a98e8241-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6655a12d207207ee0d1a26c668ed96aa", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "99ae9d94-6e9d-429a-bffb-40cb5e886c11", + "apim-request-id": "c0bf6197-810b-4288-a41f-47c7b728e310", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 14 May 2021 17:21:43 GMT", + "Date": "Tue, 29 Jun 2021 19:11:34 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": "31" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json index c523aa5f7ebf..5e2ea6842148 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "175", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b3880c041317f4458f2044d946025c7b-66cbf77425b31549-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-05d9f1108c08bb4bb2dddd9ba489595a-7a3767f0b6696c46-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e99c33afa9dbd2d0544e5c85269125b4", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "790b69ff-62e3-46b8-8fc6-d08012a30140", + "apim-request-id": "7832ce1d-7114-4c56-ba20-c5847f0f1919", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 14 May 2021 17:21:45 GMT", + "Date": "Tue, 29 Jun 2021 19:11:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-envoy-upstream-service-time": "49" }, "ResponseBody": { "documents": [ 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 2f37f120ebe0..091a95edb51a 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PhoneNumber", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PhoneNumber", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "175", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-99d722f5e08d37408fd13fdb412d10b8-c962f1e9a67af14a-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-fdba64b13110df4c844b615448def6a8-eec46a7695945949-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7c04cf67d0469f658d548aa093280fca", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "67228e71-33fe-459e-95f4-761aaed267cf", + "apim-request-id": "402ed5bb-91dd-42f1-ae46-2ead9c3e24f4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:09:05 GMT", + "Date": "Tue, 29 Jun 2021 19:11:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "34" }, "ResponseBody": { "documents": [ @@ -55,15 +55,15 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PhoneNumber%2COrganization", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PhoneNumber%2COrganization", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "175", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4b67b1c146d97c46a135e4457a00eb55-15c889227a7ce942-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-3257c11780b9214191a7a1df278950d2-0565048a7f25ff4d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5588c72a1f79c7b0129221fabf58dffc", "x-ms-return-client-request-id": "true" }, @@ -78,10 +78,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1a2355d8-ef76-49c6-b4d4-583857a661b9", + "apim-request-id": "94cf63eb-97a3-414f-89d0-9b54df7d7139", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:09:05 GMT", + "Date": "Tue, 29 Jun 2021 19:11:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", @@ -116,15 +116,15 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PhoneNumber%2COrganization%2CUSSocialSecurityNumber", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=ABARoutingNumber", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "175", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-90be9ff4a9590d45bfa1ac75b2199374-b3e5b0f0bb21de46-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-b013ab5cc8331541928e2185d2c5d2b6-f873f72094bd0546-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6dc331865856b414eb9bcb80f46e6158", "x-ms-return-client-request-id": "true" }, @@ -139,82 +139,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9ba45909-96e1-497f-8cae-6cdbc612e3b8", + "apim-request-id": "8ac04bb1-1fd1-4780-9bcc-96548c393bfd", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:09:05 GMT", + "Date": "Tue, 29 Jun 2021 19:11:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "36" - }, - "ResponseBody": { - "documents": [ - { - "redactedText": "A developer with SSN *********** whose phone number is ************ is building tools with our APIs. They work at *********", - "id": "0", - "entities": [ - { - "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": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=ABARoutingNumber", - "RequestMethod": "POST", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Content-Length": "175", - "Content-Type": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5608fc77521bff48b266ad9d2cff42bd-ae00bcd81238424f-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "48133edc2be148a31e3c69b3ae6adf35", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "documents": [ - { - "id": "0", - "text": "A developer with SSN 859-98-0987 whose phone number is 800-102-1100 is building tools with our APIs. They work at Microsoft", - "language": "en" - } - ] - }, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "aff36b26-e86d-49f9-8ba6-f78cecd69f94", - "Content-Type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:09:05 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "41" + "x-envoy-upstream-service-time": "35" }, "ResponseBody": { "documents": [ 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 4ab3056ed7fd..128edefff44e 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PhoneNumber", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PhoneNumber", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "175", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ba408db8c2cc914087cb3089f69a1dbd-bab9939573ec6e4f-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-ed5fb2035ddf8b47ad7fc211f6d12291-8ed2738a5769224c-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fc3e2e1d014a16e930b2baccef70bd87", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bf007b79-6f35-4daa-be65-69c47c832ac3", + "apim-request-id": "bdfe90d2-8c88-4792-80ee-5b6046c7581f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:09:09 GMT", + "Date": "Tue, 29 Jun 2021 19:11:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-envoy-upstream-service-time": "32" }, "ResponseBody": { "documents": [ @@ -55,15 +55,15 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PhoneNumber%2COrganization", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PhoneNumber%2COrganization", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "175", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-838f2e611bb7e64db033cc6da7cf5678-5caba6d5f9476445-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-fc3f8c672a631447a12f08081d97f90a-12dd1a28ff1eb54f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f47f8dfecab159d3b57419d3b00cf4bf", "x-ms-return-client-request-id": "true" }, @@ -78,14 +78,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1b6a5cb5-b26a-4904-972e-33eebc8c85e6", + "apim-request-id": "8312b820-faf2-4354-9400-e9ece9edfe0a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:09:09 GMT", + "Date": "Tue, 29 Jun 2021 19:11:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "41" + "x-envoy-upstream-service-time": "33" }, "ResponseBody": { "documents": [ @@ -116,15 +116,15 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PhoneNumber%2COrganization%2CUSSocialSecurityNumber", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=ABARoutingNumber", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "175", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ec4e008c86a33248a005bdd4e129f045-8438c79f9ed36f41-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-fbd67c0746e823488250a53ac8b7eacb-b9f4cc92b7f7bb4b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6fb8769d2a4111b2f0ea31dcd0af3166", "x-ms-return-client-request-id": "true" }, @@ -139,82 +139,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "74183cbd-bc86-47b7-95c7-16c92d8108d6", + "apim-request-id": "4fabed4a-9cbb-444f-9bf8-b9c5ec53ae62", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:09:09 GMT", + "Date": "Tue, 29 Jun 2021 19:11:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "35" - }, - "ResponseBody": { - "documents": [ - { - "redactedText": "A developer with SSN *********** whose phone number is ************ is building tools with our APIs. They work at *********", - "id": "0", - "entities": [ - { - "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": [] - } - ], - "errors": [], - "modelVersion": "2021-01-15" - } - }, - { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=ABARoutingNumber", - "RequestMethod": "POST", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Content-Length": "175", - "Content-Type": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1ff2b558edf68c41b988023a31fe2bba-48eeddb51415f44b-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "d01cb57ef07a53ac5be546d5e8156624", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "documents": [ - { - "id": "0", - "text": "A developer with SSN 859-98-0987 whose phone number is 800-102-1100 is building tools with our APIs. They work at Microsoft", - "language": "en" - } - ] - }, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "95f05a2b-131c-401a-8705-3d7c4235a070", - "Content-Type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:09:09 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": "33" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json index 9b536e4faa89..e24127468b80 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=false\u0026domain=phi\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/pii?showStats=false\u0026domain=phi\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "107", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f099c7a03514e24b902c4414999ed66d-1ebaf62b50d08c46-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-f99b3521ac30a0408ac47a268ab5cea8-54558a98ec79804f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5757e3544f245670b8a4c82d4b10bc4c", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "23f3eab1-1a96-447b-a8ec-219ae95c8f1b", + "apim-request-id": "697a0319-56a9-43d1-b05d-917c97804af3", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:09:06 GMT", + "Date": "Tue, 29 Jun 2021 19:11:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json index 32c06b52cb3a..1fcab79fd651 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=false\u0026domain=phi\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/pii?showStats=false\u0026domain=phi\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "107", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a59ec98ee5eaf240ba4f5dae2fc8cc4a-8aff21f8a3c79c42-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-68c23c9e7a02c3409de659f29c3d1edf-246d98ebe116d942-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4a37fade57ea6b5a5ff8ab22891b6b20", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c9b5e1f0-feae-43af-a136-ef5545569875", + "apim-request-id": "091f0743-65b9-4169-b595-9f3fadc52e9e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:09:09 GMT", + "Date": "Tue, 29 Jun 2021 19:11:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json index 61732059856d..93e5463ddc5f 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "175", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6ebe079b7c6bb048a012623ba2f8a0a8-c4a0a0f1884f084f-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-165d089d1668ba45bbfabdc05a486f06-e0e5848810072840-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b9843303f5caf9234c54041b46d95b45", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c88c6cbc-bc22-4661-82fd-96aed2a00a8c", + "apim-request-id": "08161228-a8f7-49bb-8153-835e4a3a8b98", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 14 May 2021 17:21:45 GMT", + "Date": "Tue, 29 Jun 2021 19:11:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json index 7a0c419a3916..37fa18dd31f1 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "175", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c9e2526721254f48928beffd27ddec31-ad5f106a754fdb4e-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-2c916cdcd663544ca6ab7452dba60e09-a9a5fe13fef9fe4b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f2ea379b57db58a82e503aae4ecdbb11", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f7f711f0-3f66-4495-99fa-f0efd560f510", + "apim-request-id": "1676846c-b9c5-4fc2-ace1-5116a970f315", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 14 May 2021 17:21:46 GMT", + "Date": "Tue, 29 Jun 2021 19:11:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-envoy-upstream-service-time": "35" }, "ResponseBody": { "documents": [ 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 97913fcfd4fa..367a0de72ba7 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "175", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-37a6123c9bb80d43ad2be5b0743d1ed1-2c76c8d672ef454b-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-66c7542beb37044bac10f74f9ee12af5-0da0493f78fce345-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d9aef1826ce78273f6e9f7d4bb40d2b3", "x-ms-return-client-request-id": "true" }, @@ -24,10 +24,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "90b0aa4d-b061-477c-8b33-5d6b2234d21b", + "apim-request-id": "5d7aa712-e6f1-4fdd-a06c-212c60e5166f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 14 May 2021 17:21:45 GMT", + "Date": "Tue, 29 Jun 2021 19:11:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", @@ -76,15 +76,15 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PersonType%2CUSSocialSecurityNumber%2CPhoneNumber%2COrganization", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PersonType%2CUSSocialSecurityNumber%2CPhoneNumber%2COrganization", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "175", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e48b3fd79d255441a634f9991cf34a16-bb6a3c105a23884b-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d67d4bfea18e1645906a7cbc94e24787-61890bb83b6e0247-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "420a306f7cc82f4e5752f38f4114f2d3", "x-ms-return-client-request-id": "true" }, @@ -99,10 +99,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6c2a11ec-a5c7-4f39-8fe2-7ffe95c17932", + "apim-request-id": "6d164962-c413-41b0-89aa-6814516af4ef", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 14 May 2021 17:21:45 GMT", + "Date": "Tue, 29 Jun 2021 19:11:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithResultCategoriesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithResultCategoriesTestAsync.json index b20f93c2bfd9..06ba8a24bab3 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,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "175", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-46c6f8c9982b184c8d92d53e8072f609-14624d192d09f542-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-c838b973a6de9142b8d849286d58451e-c7cacdb6de135248-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e02262f6cfb69307bfbaa46848a55889", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4c921af6-b477-4fcc-96d9-b39ddfd4e1ca", + "apim-request-id": "fccd6879-9320-42c2-b6e9-5f3c8c8c8ddd", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 14 May 2021 17:21:46 GMT", + "Date": "Tue, 29 Jun 2021 19:11:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "documents": [ @@ -76,15 +76,15 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PersonType%2CUSSocialSecurityNumber%2CPhoneNumber%2COrganization", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/pii?showStats=false\u0026stringIndexType=Utf16CodeUnit\u0026piiCategories=PersonType%2CUSSocialSecurityNumber%2CPhoneNumber%2COrganization", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "175", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3a26c450366eb04c96991d9d250f38f8-5ce03e89eca9f44d-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210514.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-cf6b5d7452e1494998f888bf0980f6d6-f4a99c8b94ac9c46-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "00989c492da9011d6ac87cc8741ed5c9", "x-ms-return-client-request-id": "true" }, @@ -99,14 +99,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "50c9effe-69d1-4b64-8c7f-7e0b02fcbd0f", + "apim-request-id": "4598fc21-7ef7-4aec-97fc-7d6eaa34ab6e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Fri, 14 May 2021 17:21:46 GMT", + "Date": "Tue, 29 Jun 2021 19:11:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-envoy-upstream-service-time": "34" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json index 1a74193536c1..108085d0ee3c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/general?model-version=2020-02-01\u0026showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/general?model-version=2020-02-01\u0026showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f7458cc501dfd24c9a266ed4053f674b-f163d8ea9575364f-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-f5bf5887a4921b408894a4f21da2fa5b-5e35e731ca83f143-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2bbb7414e3ce80e03f8df0adf3eb7d0c", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bc8c8f80-7790-48f1-9f5b-c3d5f3ca07b2", + "apim-request-id": "1f752a14-e004-4fbb-a616-22e82c487f6f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:09:12 GMT", + "Date": "Tue, 29 Jun 2021 19:11:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "1682" + "x-envoy-upstream-service-time": "66" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json index d36f18e84051..baa6408ad7a3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/general?model-version=2020-02-01\u0026showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/general?model-version=2020-02-01\u0026showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d4c01d2f50f2ad44849a149dcee06d64-378dd558f31d5043-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-f5801ea356b07e439b84bf37ea0ea7e1-f8f78c900f26d148-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6470d4cf3910c27ceead9bc2cf6c8aa0", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1ee2f88d-bc4f-4b7f-81ca-d6f86053a736", + "apim-request-id": "fe8c5ed2-28a3-475c-920a-f318716ef1f7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:09:13 GMT", + "Date": "Tue, 29 Jun 2021 19:11:45 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": "5057" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKey.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKey.json index e2e1027dad82..f285ee3a8475 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKey.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKey.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/languages", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c06645728675104e96d835740c14079a-a41f941f61021848-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-4cab44c1b958af4894b4558553ae1565-412b54ae615e8048-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "31841aab9edddcddb56c91e8fafcead5", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ebc1fa95-469e-45de-a899-9868490f0454", + "apim-request-id": "f32238c4-094b-4daa-bc2f-d5e77c4e5d24", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:09:12 GMT", + "Date": "Tue, 29 Jun 2021 19:11:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "documents": [ @@ -50,15 +50,15 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/languages", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c0c528060f9e2642a8ddc4273960cea1-472cde6db4ac0e4c-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-2f20f640581a3b47b3e19f175fdbb5ba-1ac8fc965fa28141-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "13daa31269993bffe7f19e3dc94f204e", "x-ms-return-client-request-id": "true" }, @@ -73,21 +73,28 @@ }, "StatusCode": 401, "ResponseHeaders": { + "apim-request-id": "d7c1f592-9ab6-449c-bce8-a6c51983814c", "Content-Length": "224", - "Date": "Tue, 11 May 2021 16:09:12 GMT" + "Content-Type": "application/json", + "Date": "Tue, 29 Jun 2021 19:11:39 GMT" }, - "ResponseBody": "eyJlcnJvciI6eyJjb2RlIjoiNDAxIiwibWVzc2FnZSI6IkFjY2VzcyBkZW5pZWQgZHVlIHRvIGludmFsaWQgc3Vic2NyaXB0aW9uIGtleSBvciB3cm9uZyBBUEkgZW5kcG9pbnQuIE1ha2Ugc3VyZSB0byBwcm92aWRlIGEgdmFsaWQga2V5IGZvciBhbiBhY3RpdmUgc3Vic2NyaXB0aW9uIGFuZCB1c2UgYSBjb3JyZWN0IHJlZ2lvbmFsIEFQSSBlbmRwb2ludCBmb3IgeW91ciByZXNvdXJjZS4ifX0=" + "ResponseBody": { + "error": { + "code": "401", + "message": "Access denied due to invalid subscription key or wrong API endpoint. Make sure to provide a valid key for an active subscription and use a correct regional API endpoint for your resource." + } + } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/languages", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9d3132bf36e42446a4807a7bf7fe5897-692884d8e0dffd4c-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-f3e6da67b8d1214e870e0ab803a937eb-a393cfc38702bb45-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d85ee288a420af625bce0d2748754fc8", "x-ms-return-client-request-id": "true" }, @@ -102,14 +109,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3af06240-da55-4e5f-a43d-6649eee0baf2", + "apim-request-id": "f47a3a04-9fcd-4ea5-8693-240663ef88f7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:09:12 GMT", + "Date": "Tue, 29 Jun 2021 19:11:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKeyAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKeyAsync.json index f8a2a5568efc..1d049d8e0307 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKeyAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKeyAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/languages", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-636f40c97130094fa6b98cb395f3828f-3dfca87fa83f044f-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-eac5f409f284ab4baed84802d2a397fe-22fcd80e13c2e848-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fb9f47ae04f9d825012386a2a51b9727", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fceb56d9-e6c7-4c1a-831a-6b9f5887eaf5", + "apim-request-id": "51ec0419-f82f-49e7-af52-84a4ab1dac50", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:09:13 GMT", + "Date": "Tue, 29 Jun 2021 19:11:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "documents": [ @@ -50,15 +50,15 @@ } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/languages", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8b05076a30a5924a9fce616cd87c8777-f5e40264e67b9340-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-63432adc2a4fc34c92dd6b30a4c36b62-9876da259fe7e148-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5aa0f7e4723c7c582e8ca602e03d8c8c", "x-ms-return-client-request-id": "true" }, @@ -73,21 +73,28 @@ }, "StatusCode": 401, "ResponseHeaders": { + "apim-request-id": "fe3d7632-e8d3-42ef-9499-59a4b5bd827f", "Content-Length": "224", - "Date": "Tue, 11 May 2021 16:09:13 GMT" + "Content-Type": "application/json", + "Date": "Tue, 29 Jun 2021 19:11:45 GMT" }, - "ResponseBody": "eyJlcnJvciI6eyJjb2RlIjoiNDAxIiwibWVzc2FnZSI6IkFjY2VzcyBkZW5pZWQgZHVlIHRvIGludmFsaWQgc3Vic2NyaXB0aW9uIGtleSBvciB3cm9uZyBBUEkgZW5kcG9pbnQuIE1ha2Ugc3VyZSB0byBwcm92aWRlIGEgdmFsaWQga2V5IGZvciBhbiBhY3RpdmUgc3Vic2NyaXB0aW9uIGFuZCB1c2UgYSBjb3JyZWN0IHJlZ2lvbmFsIEFQSSBlbmRwb2ludCBmb3IgeW91ciByZXNvdXJjZS4ifX0=" + "ResponseBody": { + "error": { + "code": "401", + "message": "Access denied due to invalid subscription key or wrong API endpoint. Make sure to provide a valid key for an active subscription and use a correct regional API endpoint for your resource." + } + } }, { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/languages", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b25805b20c05f043a129534a670a1697-af25d49a3c490c4c-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-eaa234e01378394b9ca85a8fb41aecaf-325316159468a04a-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1a26406b44799ec461ce0951aebc7b46", "x-ms-return-client-request-id": "true" }, @@ -102,14 +109,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5c21717e-884f-4a80-8df2-dc3c6430f20f", + "apim-request-id": "bbda23e8-bcb9-4edd-9681-c633d3c0ea28", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:09:13 GMT", + "Date": "Tue, 29 Jun 2021 19:11:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json index 6317c67a8203..68b9243f95e6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a09c410eb0821349954d654dd232dc2b-d4a8be18f1663245-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-2c49ab47be0fe644828d8cba52babf82-8fe5af5313f48941-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "af25edec94c2cbbfd63455e84047f9b5", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0613fb3e-4406-4b4b-867f-55d92a2630bf", + "apim-request-id": "c60bfb76-dae6-43f5-8ed7-de2811448c51", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:09:12 GMT", + "Date": "Tue, 29 Jun 2021 19:11:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "documents": [ @@ -50,7 +50,7 @@ } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], 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 9d610549a27c..2e8d5197036e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-15913793acf29d4fbeed94ac9bc42d90-5568c665189afa4a-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-e895539bd1d32647aa030f4f91eeecd4-6e9456e9afbc2044-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "66b8ef6aed4353af1a0a6380bef4513f", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d86ecd25-5bc9-4a1a-b497-a3b25289a054", + "apim-request-id": "27d70763-19b5-4016-b6d0-8ab6c75e5fbd", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:09:13 GMT", + "Date": "Tue, 29 Jun 2021 19:11:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "documents": [ @@ -50,7 +50,7 @@ } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], 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 285e521029d0..3b6f71658a2a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "70", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-01be7b641cdc0a459c293102fdf224ff-3659ea937af5a24d-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-b89339ab85368442ab35ec93f186a0ff-5e91eb54202b834e-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9c096f0bd3a36f626316eda5be1e28c8", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5c20beef-b358-4f95-ab4a-d433fa090b43", + "apim-request-id": "701cfd11-5883-43f0-9397-dde3734efc21", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:09:12 GMT", + "Date": "Tue, 29 Jun 2021 19:11:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "documents": [ @@ -43,14 +43,14 @@ "category": "Organization", "offset": 4, "length": 9, - "confidenceScore": 0.82 + "confidenceScore": 0.93 } ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], 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 4521d1b0f6c7..cc5c13cd7937 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "70", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8deefd7258ed9d4bb5fab076ff218bcb-628a4aa2a2bb904a-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-99951cfe9dfd784a801fe136cf73c02f-f792b37d8208ff41-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a71f02631f3c7a05f4cb179d2fb85aac", "x-ms-return-client-request-id": "true" }, @@ -24,10 +24,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "97ff153e-84a1-4940-a857-b9141e6ce3f5", + "apim-request-id": "a66d4652-5e61-427d-a095-954d97f4f695", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:09:13 GMT", + "Date": "Tue, 29 Jun 2021 19:11:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", @@ -43,14 +43,14 @@ "category": "Organization", "offset": 4, "length": 9, - "confidenceScore": 0.82 + "confidenceScore": 0.93 } ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], 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 446c6df4998d..a4d05489a54e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3e1490cb10feee4faba51f5a8a66f479-809ad6e24326654c-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-7172d5cfe113ab499734ae8792840c66-9ccbc4c78bfa5140-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a12918df519b0dc53f87435017a62e99", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ad4a5bcb-b325-41df-8f7b-b48231330161", + "apim-request-id": "c4beb3ac-d4e7-4b1f-bfc6-efe72a86179c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:09:12 GMT", + "Date": "Tue, 29 Jun 2021 19:11:40 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": "23" }, "ResponseBody": { "documents": [ @@ -43,14 +43,14 @@ "category": "Organization", "offset": 3, "length": 9, - "confidenceScore": 0.95 + "confidenceScore": 0.99 } ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], 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 cc58be4c1564..f8d0d7004dac 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1-preview.5/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://mariari-westus2-s.cognitiveservices.azure.com/text/analytics/v3.1/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json, text/json", "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-838718bfa2d74348a347ebad8f5fb576-9708635d36f8f04f-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210511.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-5012077b05ae22469b567ed7d07ac257-b9a3eff365617b49-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210629.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "05b9b9c88ccd2f82a72e96b9014b88fb", "x-ms-return-client-request-id": "true" }, @@ -24,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "14430cc6-eb9f-4677-b428-ca703d62b8a2", + "apim-request-id": "8213c75d-364e-4ba6-a489-9f2c311360b7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "Date": "Tue, 11 May 2021 16:09:13 GMT", + "Date": "Tue, 29 Jun 2021 19:11:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "documents": [ @@ -43,14 +43,14 @@ "category": "Organization", "offset": 3, "length": 9, - "confidenceScore": 0.95 + "confidenceScore": 0.99 } ], "warnings": [] } ], "errors": [], - "modelVersion": "2021-01-15" + "modelVersion": "2021-06-01" } } ], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/TextAnalyticsClientLiveTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/TextAnalyticsClientLiveTests.cs index a2bb3c16c93d..5e66719e7698 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/TextAnalyticsClientLiveTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/TextAnalyticsClientLiveTests.cs @@ -17,7 +17,7 @@ public TextAnalyticsClientLiveTests(bool isAsync, TextAnalyticsClientOptions.Ser } [RecordedTest] - [ServiceVersion(Min = TextAnalyticsClientOptions.ServiceVersion.V3_1_Preview_5)] + [ServiceVersion(Min = TextAnalyticsClientOptions.ServiceVersion.V3_1)] public async Task TextWithEmoji() { TextAnalyticsClient client = GetClient(); @@ -32,7 +32,7 @@ public async Task TextWithEmoji() } [RecordedTest] - [ServiceVersion(Min = TextAnalyticsClientOptions.ServiceVersion.V3_1_Preview_5)] + [ServiceVersion(Min = TextAnalyticsClientOptions.ServiceVersion.V3_1)] public async Task TextWithDiacriticsNFC() { TextAnalyticsClient client = GetClient(); @@ -47,7 +47,7 @@ public async Task TextWithDiacriticsNFC() } [RecordedTest] - [ServiceVersion(Min = TextAnalyticsClientOptions.ServiceVersion.V3_1_Preview_5)] + [ServiceVersion(Min = TextAnalyticsClientOptions.ServiceVersion.V3_1)] public async Task TextInKoreanNFC() { TextAnalyticsClient client = GetClient(); 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 d9364659bffe..b6b81f3fa7b1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperation.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperation.cs @@ -91,6 +91,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++}"); @@ -113,6 +114,7 @@ We tried again today and it was amazing. Everyone in my family liked the trail a docNumber = 1; foreach (RecognizePiiEntitiesActionResult piiActionResults in piiResults) { + Console.WriteLine($" Action name: {piiActionResults.ActionName}"); foreach (RecognizePiiEntitiesResult documentResults in piiActionResults.DocumentsResults) { Console.WriteLine($" Document #{docNumber++}"); @@ -135,6 +137,7 @@ We tried again today and it was amazing. Everyone in my family liked the trail a docNumber = 1; foreach (ExtractKeyPhrasesActionResult keyPhrasesActionResult in keyPhrasesResults) { + Console.WriteLine($" Action name: {keyPhrasesActionResult.ActionName}"); foreach (ExtractKeyPhrasesResult documentResults in keyPhrasesActionResult.DocumentsResults) { Console.WriteLine($" Document #{docNumber++}"); @@ -152,6 +155,7 @@ We tried again today and it was amazing. Everyone in my family liked the trail a docNumber = 1; foreach (RecognizeLinkedEntitiesActionResult linkedEntitiesActionResults in entityLinkingResults) { + Console.WriteLine($" Action name: {linkedEntitiesActionResults.ActionName}"); foreach (RecognizeLinkedEntitiesResult documentResults in linkedEntitiesActionResults.DocumentsResults) { Console.WriteLine($" Document #{docNumber++}"); @@ -183,6 +187,7 @@ We tried again today and it was amazing. Everyone in my family liked the trail a docNumber = 1; foreach (AnalyzeSentimentActionResult analyzeSentimentActionsResult in analyzeSentimentResults) { + Console.WriteLine($" Action name: {analyzeSentimentActionsResult.ActionName}"); foreach (AnalyzeSentimentResult documentResults in analyzeSentimentActionsResult.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 17c2d3a24477..5bfd45d63e82 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperationAsync.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperationAsync.cs @@ -82,6 +82,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++}"); @@ -104,6 +105,7 @@ We tried again today and it was amazing. Everyone in my family liked the trail a docNumber = 1; foreach (RecognizePiiEntitiesActionResult piiActionResults in piiResults) { + Console.WriteLine($" Action name: {piiActionResults.ActionName}"); foreach (RecognizePiiEntitiesResult documentResults in piiActionResults.DocumentsResults) { Console.WriteLine($" Document #{docNumber++}"); @@ -126,6 +128,7 @@ We tried again today and it was amazing. Everyone in my family liked the trail a docNumber = 1; foreach (ExtractKeyPhrasesActionResult keyPhrasesActionResult in keyPhrasesResults) { + Console.WriteLine($" Action name: {keyPhrasesActionResult.ActionName}"); foreach (ExtractKeyPhrasesResult documentResults in keyPhrasesActionResult.DocumentsResults) { Console.WriteLine($" Document #{docNumber++}"); @@ -143,6 +146,7 @@ We tried again today and it was amazing. Everyone in my family liked the trail a docNumber = 1; foreach (RecognizeLinkedEntitiesActionResult linkedEntitiesActionResults in entityLinkingResults) { + Console.WriteLine($" Action name: {linkedEntitiesActionResults.ActionName}"); foreach (RecognizeLinkedEntitiesResult documentResults in linkedEntitiesActionResults.DocumentsResults) { Console.WriteLine($" Document #{docNumber++}"); @@ -174,6 +178,7 @@ We tried again today and it was amazing. Everyone in my family liked the trail a docNumber = 1; foreach (AnalyzeSentimentActionResult analyzeSentimentActionsResult in analyzeSentimentResults) { + Console.WriteLine($" Action name: {analyzeSentimentActionsResult.ActionName}"); foreach (AnalyzeSentimentResult documentResults in analyzeSentimentActionsResult.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 2b150532c43f..dc21b590af36 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperationConvenience.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperationConvenience.cs @@ -84,6 +84,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++}"); @@ -106,6 +107,7 @@ We tried again today and it was amazing. Everyone in my family liked the trail a docNumber = 1; foreach (RecognizePiiEntitiesActionResult piiActionResults in piiResults) { + Console.WriteLine($" Action name: {piiActionResults.ActionName}"); foreach (RecognizePiiEntitiesResult documentResults in piiActionResults.DocumentsResults) { Console.WriteLine($" Document #{docNumber++}"); @@ -128,6 +130,7 @@ We tried again today and it was amazing. Everyone in my family liked the trail a docNumber = 1; foreach (ExtractKeyPhrasesActionResult keyPhrasesActionResult in keyPhrasesResults) { + Console.WriteLine($" Action name: {keyPhrasesActionResult.ActionName}"); foreach (ExtractKeyPhrasesResult documentResults in keyPhrasesActionResult.DocumentsResults) { Console.WriteLine($" Document #{docNumber++}"); @@ -145,6 +148,7 @@ We tried again today and it was amazing. Everyone in my family liked the trail a docNumber = 1; foreach (RecognizeLinkedEntitiesActionResult linkedEntitiesActionResults in entityLinkingResults) { + Console.WriteLine($" Action name: {linkedEntitiesActionResults.ActionName}"); foreach (RecognizeLinkedEntitiesResult documentResults in linkedEntitiesActionResults.DocumentsResults) { Console.WriteLine($" Document #{docNumber++}"); @@ -176,6 +180,7 @@ We tried again today and it was amazing. Everyone in my family liked the trail a docNumber = 1; foreach (AnalyzeSentimentActionResult analyzeSentimentActionsResult in analyzeSentimentResults) { + Console.WriteLine($" Action name: {analyzeSentimentActionsResult.ActionName}"); foreach (AnalyzeSentimentResult documentResults in analyzeSentimentActionsResult.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 6c75fbdf8d1a..8f61e3b24ea9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperationConvenienceAsync.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperationConvenienceAsync.cs @@ -76,6 +76,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++}"); @@ -98,6 +99,7 @@ We tried again today and it was amazing. Everyone in my family liked the trail a docNumber = 1; foreach (RecognizePiiEntitiesActionResult piiActionResults in piiResults) { + Console.WriteLine($" Action name: {piiActionResults.ActionName}"); foreach (RecognizePiiEntitiesResult documentResults in piiActionResults.DocumentsResults) { Console.WriteLine($" Document #{docNumber++}"); @@ -120,6 +122,7 @@ We tried again today and it was amazing. Everyone in my family liked the trail a docNumber = 1; foreach (ExtractKeyPhrasesActionResult keyPhrasesActionResult in keyPhrasesResults) { + Console.WriteLine($" Action name: {keyPhrasesActionResult.ActionName}"); foreach (ExtractKeyPhrasesResult documentResults in keyPhrasesActionResult.DocumentsResults) { Console.WriteLine($" Document #{docNumber++}"); @@ -137,6 +140,7 @@ We tried again today and it was amazing. Everyone in my family liked the trail a docNumber = 1; foreach (RecognizeLinkedEntitiesActionResult linkedEntitiesActionResults in entityLinkingResults) { + Console.WriteLine($" Action name: {linkedEntitiesActionResults.ActionName}"); foreach (RecognizeLinkedEntitiesResult documentResults in linkedEntitiesActionResults.DocumentsResults) { Console.WriteLine($" Document #{docNumber++}"); @@ -168,6 +172,7 @@ We tried again today and it was amazing. Everyone in my family liked the trail a docNumber = 1; foreach (AnalyzeSentimentActionResult analyzeSentimentActionsResult in analyzeSentimentResults) { + Console.WriteLine($" Action name: {analyzeSentimentActionsResult.ActionName}"); foreach (AnalyzeSentimentResult documentResults in analyzeSentimentActionsResult.DocumentsResults) { Console.WriteLine($" Document #{docNumber++}");