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 f33f265cfc7b9..23306cab043d6 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 @@ -138,6 +138,7 @@ public partial class EntitiesTaskParameters { public EntitiesTaskParameters() { } public string ModelVersion { get { throw null; } set { } } + public Azure.AI.TextAnalytics.StringIndexType StringIndexType { get { throw null; } set { } } } public partial class Entity { @@ -367,6 +368,7 @@ public partial class PiiTaskParameters public PiiTaskParameters() { } public Azure.AI.TextAnalytics.PiiTaskParametersDomain? Domain { get { throw null; } set { } } public string ModelVersion { get { throw null; } set { } } + public Azure.AI.TextAnalytics.StringIndexType StringIndexType { get { throw null; } set { } } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct PiiTaskParametersDomain : System.IEquatable @@ -448,6 +450,25 @@ internal SentimentConfidenceScores() { } public double Neutral { get { throw null; } } public double Positive { get { throw null; } } } + [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] + public readonly partial struct StringIndexType : System.IEquatable + { + private readonly object _dummy; + private readonly int _dummyPrimitive; + public StringIndexType(string value) { throw null; } + public static Azure.AI.TextAnalytics.StringIndexType TextElementsV8 { get { throw null; } } + public static Azure.AI.TextAnalytics.StringIndexType UnicodeCodePoint { get { throw null; } } + public static Azure.AI.TextAnalytics.StringIndexType Utf16CodeUnit { get { throw null; } } + public bool Equals(Azure.AI.TextAnalytics.StringIndexType other) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override bool Equals(object obj) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override int GetHashCode() { throw null; } + public static bool operator ==(Azure.AI.TextAnalytics.StringIndexType left, Azure.AI.TextAnalytics.StringIndexType right) { throw null; } + public static implicit operator Azure.AI.TextAnalytics.StringIndexType (string value) { throw null; } + public static bool operator !=(Azure.AI.TextAnalytics.StringIndexType left, Azure.AI.TextAnalytics.StringIndexType right) { throw null; } + public override string ToString() { throw null; } + } public partial class TasksStateTasksDetails : Azure.AI.TextAnalytics.TaskState { internal TasksStateTasksDetails() { } @@ -643,6 +664,7 @@ public partial class TextAnalyticsRequestOptions public TextAnalyticsRequestOptions() { } public bool IncludeStatistics { get { throw null; } set { } } public string ModelVersion { get { throw null; } set { } } + public Azure.AI.TextAnalytics.StringIndexType StringIndexType { get { throw null; } set { } } } public partial class TextAnalyticsResult { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntitiesTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntitiesTaskParameters.cs index e774a8efc5a62..7210f689d164a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntitiesTaskParameters.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntitiesTaskParameters.cs @@ -20,6 +20,6 @@ public partial class EntitiesTaskParameters /// /// StringIndexType /// - internal StringIndexType? StringIndexType { get; set; } + public StringIndexType StringIndexType { get; set; } = StringIndexType.Utf16CodeUnit; } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobMetadata.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobMetadata.Serialization.cs new file mode 100644 index 0000000000000..21c7ed22edbdb --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobMetadata.Serialization.cs @@ -0,0 +1,66 @@ +// 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 AnalyzeJobMetadata + { + internal static AnalyzeJobMetadata DeserializeAnalyzeJobMetadata(JsonElement element) + { + Optional displayName = default; + DateTimeOffset createdDateTime = default; + Optional expirationDateTime = default; + string jobId = default; + DateTimeOffset lastUpdateDateTime = default; + JobStatus status = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("displayName")) + { + displayName = property.Value.GetString(); + continue; + } + if (property.NameEquals("createdDateTime")) + { + createdDateTime = property.Value.GetDateTimeOffset("O"); + continue; + } + if (property.NameEquals("expirationDateTime")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + expirationDateTime = property.Value.GetDateTimeOffset("O"); + continue; + } + if (property.NameEquals("jobId")) + { + jobId = property.Value.GetString(); + continue; + } + if (property.NameEquals("lastUpdateDateTime")) + { + lastUpdateDateTime = property.Value.GetDateTimeOffset("O"); + continue; + } + if (property.NameEquals("status")) + { + status = new JobStatus(property.Value.GetString()); + continue; + } + } + return new AnalyzeJobMetadata(createdDateTime, Optional.ToNullable(expirationDateTime), jobId, lastUpdateDateTime, status, displayName.Value); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobMetadata.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobMetadata.cs new file mode 100644 index 0000000000000..7650c4bc5f2d6 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobMetadata.cs @@ -0,0 +1,44 @@ +// 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 AnalyzeJobMetadata. + internal partial class AnalyzeJobMetadata : JobMetadata + { + /// Initializes a new instance of AnalyzeJobMetadata. + /// . + /// . + /// . + /// . + /// is null. + internal AnalyzeJobMetadata(DateTimeOffset createdDateTime, string jobId, DateTimeOffset lastUpdateDateTime, JobStatus status) : base(createdDateTime, jobId, lastUpdateDateTime, status) + { + if (jobId == null) + { + throw new ArgumentNullException(nameof(jobId)); + } + } + + /// Initializes a new instance of AnalyzeJobMetadata. + /// . + /// . + /// . + /// . + /// . + /// . + internal AnalyzeJobMetadata(DateTimeOffset createdDateTime, DateTimeOffset? expirationDateTime, string jobId, DateTimeOffset lastUpdateDateTime, JobStatus status, string displayName) : base(createdDateTime, expirationDateTime, jobId, lastUpdateDateTime, status) + { + DisplayName = displayName; + } + + public string DisplayName { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobState.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobState.Serialization.cs index 61233a43d43ab..9d3f903f9f16d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobState.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobState.Serialization.cs @@ -21,8 +21,8 @@ internal static AnalyzeJobState DeserializeAnalyzeJobState(JsonElement element) Optional statistics = default; AnalyzeTasks tasks = default; Optional nextLink = default; - DateTimeOffset createdDateTime = default; Optional displayName = default; + DateTimeOffset createdDateTime = default; Optional expirationDateTime = default; string jobId = default; DateTimeOffset lastUpdateDateTime = default; @@ -64,14 +64,14 @@ internal static AnalyzeJobState DeserializeAnalyzeJobState(JsonElement element) nextLink = property.Value.GetString(); continue; } - if (property.NameEquals("createdDateTime")) + if (property.NameEquals("displayName")) { - createdDateTime = property.Value.GetDateTimeOffset("O"); + displayName = property.Value.GetString(); continue; } - if (property.NameEquals("displayName")) + if (property.NameEquals("createdDateTime")) { - displayName = property.Value.GetString(); + createdDateTime = property.Value.GetDateTimeOffset("O"); continue; } if (property.NameEquals("expirationDateTime")) @@ -100,7 +100,7 @@ internal static AnalyzeJobState DeserializeAnalyzeJobState(JsonElement element) continue; } } - return new AnalyzeJobState(createdDateTime, displayName.Value, Optional.ToNullable(expirationDateTime), jobId, lastUpdateDateTime, status, Optional.ToList(errors), statistics.Value, tasks, nextLink.Value); + return new AnalyzeJobState(createdDateTime, Optional.ToNullable(expirationDateTime), jobId, lastUpdateDateTime, status, displayName.Value, Optional.ToList(errors), statistics.Value, tasks, nextLink.Value); } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobState.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobState.cs index d538fd291a134..c95750c2019f3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobState.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobState.cs @@ -13,7 +13,7 @@ namespace Azure.AI.TextAnalytics.Models { /// The AnalyzeJobState. - internal partial class AnalyzeJobState : JobMetadata + internal partial class AnalyzeJobState : AnalyzeJobMetadata { /// Initializes a new instance of AnalyzeJobState. /// . @@ -39,16 +39,16 @@ internal AnalyzeJobState(DateTimeOffset createdDateTime, string jobId, DateTimeO /// Initializes a new instance of AnalyzeJobState. /// . - /// . /// . /// . /// . /// . + /// . /// . /// if showStats=true was specified in the request this field will contain information about the request payload. /// . /// . - internal AnalyzeJobState(DateTimeOffset createdDateTime, string displayName, DateTimeOffset? expirationDateTime, string jobId, DateTimeOffset lastUpdateDateTime, JobStatus status, IReadOnlyList errors, TextDocumentBatchStatistics statistics, AnalyzeTasks tasks, string nextLink) : base(createdDateTime, displayName, expirationDateTime, jobId, lastUpdateDateTime, status) + internal AnalyzeJobState(DateTimeOffset createdDateTime, DateTimeOffset? expirationDateTime, string jobId, DateTimeOffset lastUpdateDateTime, JobStatus status, string displayName, IReadOnlyList errors, TextDocumentBatchStatistics statistics, AnalyzeTasks tasks, string nextLink) : base(createdDateTime, expirationDateTime, jobId, lastUpdateDateTime, status, displayName) { Errors = errors; Statistics = statistics; diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTaskParameters.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTaskParameters.Serialization.cs index d032996d58f58..3021b8373bdb8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTaskParameters.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTaskParameters.Serialization.cs @@ -23,7 +23,7 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) if (Optional.IsDefined(StringIndexType)) { writer.WritePropertyName("stringIndexType"); - writer.WriteStringValue(StringIndexType.Value.ToString()); + writer.WriteStringValue(StringIndexType.ToString()); } writer.WriteEndObject(); } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTaskParameters.cs index 3069009c1086c..975b71dbb5bd2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTaskParameters.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTaskParameters.cs @@ -5,8 +5,6 @@ #nullable disable -using Azure.AI.TextAnalytics.Models; - namespace Azure.AI.TextAnalytics { /// The EntitiesTaskParameters. diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.Serialization.cs index 3a67696dc14cb..42cea12ef73f0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.Serialization.cs @@ -21,7 +21,6 @@ internal static HealthcareJobState DeserializeHealthcareJobState(JsonElement ele Optional> errors = default; Optional nextLink = default; DateTimeOffset createdDateTime = default; - Optional displayName = default; Optional expirationDateTime = default; string jobId = default; DateTimeOffset lastUpdateDateTime = default; @@ -63,11 +62,6 @@ internal static HealthcareJobState DeserializeHealthcareJobState(JsonElement ele createdDateTime = property.Value.GetDateTimeOffset("O"); continue; } - if (property.NameEquals("displayName")) - { - displayName = property.Value.GetString(); - continue; - } if (property.NameEquals("expirationDateTime")) { if (property.Value.ValueKind == JsonValueKind.Null) @@ -94,7 +88,7 @@ internal static HealthcareJobState DeserializeHealthcareJobState(JsonElement ele continue; } } - return new HealthcareJobState(createdDateTime, displayName.Value, Optional.ToNullable(expirationDateTime), jobId, lastUpdateDateTime, status, results.Value, Optional.ToList(errors), nextLink.Value); + return new HealthcareJobState(createdDateTime, Optional.ToNullable(expirationDateTime), jobId, lastUpdateDateTime, status, results.Value, Optional.ToList(errors), nextLink.Value); } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.cs index b14ea28f1e1c2..1f87d9a47c58b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.cs @@ -33,7 +33,6 @@ internal HealthcareJobState(DateTimeOffset createdDateTime, string jobId, DateTi /// Initializes a new instance of HealthcareJobState. /// . - /// . /// . /// . /// . @@ -41,7 +40,7 @@ internal HealthcareJobState(DateTimeOffset createdDateTime, string jobId, DateTi /// . /// . /// . - internal HealthcareJobState(DateTimeOffset createdDateTime, string displayName, DateTimeOffset? expirationDateTime, string jobId, DateTimeOffset lastUpdateDateTime, JobStatus status, HealthcareResult results, IReadOnlyList errors, string nextLink) : base(createdDateTime, displayName, expirationDateTime, jobId, lastUpdateDateTime, status) + internal HealthcareJobState(DateTimeOffset createdDateTime, DateTimeOffset? expirationDateTime, string jobId, DateTimeOffset lastUpdateDateTime, JobStatus status, HealthcareResult results, IReadOnlyList errors, string nextLink) : base(createdDateTime, expirationDateTime, jobId, lastUpdateDateTime, status) { Results = results; Errors = errors; diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.Serialization.cs index 5feb7b5c8a2e7..f359f03f79a2c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.Serialization.cs @@ -17,7 +17,6 @@ internal partial class JobMetadata internal static JobMetadata DeserializeJobMetadata(JsonElement element) { DateTimeOffset createdDateTime = default; - Optional displayName = default; Optional expirationDateTime = default; string jobId = default; DateTimeOffset lastUpdateDateTime = default; @@ -29,11 +28,6 @@ internal static JobMetadata DeserializeJobMetadata(JsonElement element) createdDateTime = property.Value.GetDateTimeOffset("O"); continue; } - if (property.NameEquals("displayName")) - { - displayName = property.Value.GetString(); - continue; - } if (property.NameEquals("expirationDateTime")) { if (property.Value.ValueKind == JsonValueKind.Null) @@ -60,7 +54,7 @@ internal static JobMetadata DeserializeJobMetadata(JsonElement element) continue; } } - return new JobMetadata(createdDateTime, displayName.Value, Optional.ToNullable(expirationDateTime), jobId, lastUpdateDateTime, status); + return new JobMetadata(createdDateTime, Optional.ToNullable(expirationDateTime), jobId, lastUpdateDateTime, status); } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.cs index 36bce0f444be8..edfca717ac131 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.cs @@ -34,15 +34,13 @@ internal JobMetadata(DateTimeOffset createdDateTime, string jobId, DateTimeOffse /// Initializes a new instance of JobMetadata. /// . - /// . /// . /// . /// . /// . - internal JobMetadata(DateTimeOffset createdDateTime, string displayName, DateTimeOffset? expirationDateTime, string jobId, DateTimeOffset lastUpdateDateTime, JobStatus status) + internal JobMetadata(DateTimeOffset createdDateTime, DateTimeOffset? expirationDateTime, string jobId, DateTimeOffset lastUpdateDateTime, JobStatus status) { CreatedDateTime = createdDateTime; - DisplayName = displayName; ExpirationDateTime = expirationDateTime; JobId = jobId; LastUpdateDateTime = lastUpdateDateTime; @@ -50,7 +48,6 @@ internal JobMetadata(DateTimeOffset createdDateTime, string displayName, DateTim } public DateTimeOffset CreatedDateTime { get; } - public string DisplayName { get; } public DateTimeOffset? ExpirationDateTime { get; } public DateTimeOffset LastUpdateDateTime { get; } public JobStatus Status { get; } 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 3405f6b5dd65e..613b41bdebd20 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 @@ -28,7 +28,7 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) if (Optional.IsDefined(StringIndexType)) { writer.WritePropertyName("stringIndexType"); - writer.WriteStringValue(StringIndexType.Value.ToString()); + writer.WriteStringValue(StringIndexType.ToString()); } writer.WriteEndObject(); } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParameters.cs index a8a6e5b5e6b65..44c26dcf99ff1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParameters.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParameters.cs @@ -5,8 +5,6 @@ #nullable disable -using Azure.AI.TextAnalytics.Models; - namespace Azure.AI.TextAnalytics { /// The PiiTaskParameters. diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/StringIndexType.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/StringIndexType.cs index 2a94f328d2f70..e2257f9533dae 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/StringIndexType.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/StringIndexType.cs @@ -8,10 +8,10 @@ using System; using System.ComponentModel; -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { /// The StringIndexType. - internal readonly partial struct StringIndexType : IEquatable + public readonly partial struct StringIndexType : IEquatable { private readonly string _value; diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTaskParameters.cs index 6ac89e913ab30..319fd83e4fce3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTaskParameters.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTaskParameters.cs @@ -20,7 +20,7 @@ public partial class PiiTaskParameters /// /// StringIndexType /// - internal StringIndexType? StringIndexType { get; set; } + public StringIndexType StringIndexType { get; set; } = StringIndexType.Utf16CodeUnit; /// /// PiiTaskParametersDomain diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/StringIndexType.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/StringIndexType.cs index c8f0fa5014180..204a192ff0b0b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/StringIndexType.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/StringIndexType.cs @@ -3,10 +3,10 @@ using Azure.Core; -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { [CodeGenModel("StringIndexType")] - internal partial struct StringIndexType + public partial struct StringIndexType { } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs index 2974a73956590..41bceef3d5ee6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs @@ -25,9 +25,6 @@ public class TextAnalyticsClient private readonly string DefaultCognitiveScope = "https://cognitiveservices.azure.com/.default"; private const string AuthorizationHeader = "Ocp-Apim-Subscription-Key"; - // Specifies the method used to interpret string offsets. Default to . - private readonly StringIndexType _stringCodeUnit = StringIndexType.Utf16CodeUnit; - /// /// Protected constructor to allow mocking. /// @@ -426,7 +423,7 @@ public virtual async Task> RecognizeEntiti Response result = await _serviceRestClient.EntitiesRecognitionGeneralAsync( new MultiLanguageBatchInput(documents), - stringIndexType: _stringCodeUnit, + stringIndexType: StringIndexType.Utf16CodeUnit, cancellationToken: cancellationToken).ConfigureAwait(false); Response response = result.GetRawResponse(); @@ -484,7 +481,7 @@ public virtual Response RecognizeEntities(string do Response result = _serviceRestClient.EntitiesRecognitionGeneral( new MultiLanguageBatchInput(documents), - stringIndexType: _stringCodeUnit, + stringIndexType: StringIndexType.Utf16CodeUnit, cancellationToken: cancellationToken); Response response = result.GetRawResponse(); @@ -649,7 +646,7 @@ private async Task> RecognizeEntitie batchInput, options.ModelVersion, options.IncludeStatistics, - _stringCodeUnit, + options.StringIndexType, cancellationToken).ConfigureAwait(false); var response = result.GetRawResponse(); @@ -675,7 +672,7 @@ private Response RecognizeEntitiesBatch(Multi batchInput, options.ModelVersion, options.IncludeStatistics, - _stringCodeUnit, + options.StringIndexType, cancellationToken); var response = result.GetRawResponse(); @@ -739,7 +736,7 @@ public virtual async Task> RecognizePiiEntitiesAsy options.ModelVersion, options.IncludeStatistics, options.DomainFilter.GetString(), - _stringCodeUnit, + options.StringIndexType, cancellationToken: cancellationToken).ConfigureAwait(false); Response response = result.GetRawResponse(); @@ -804,7 +801,7 @@ public virtual Response RecognizePiiEntities(string documen options.ModelVersion, options.IncludeStatistics, options.DomainFilter.GetString(), - _stringCodeUnit, + options.StringIndexType, cancellationToken: cancellationToken); Response response = result.GetRawResponse(); @@ -970,7 +967,7 @@ private async Task> RecognizePiiE options.ModelVersion, options.IncludeStatistics, options.DomainFilter.GetString(), - _stringCodeUnit, + options.StringIndexType, cancellationToken).ConfigureAwait(false); var response = result.GetRawResponse(); @@ -997,7 +994,7 @@ private Response RecognizePiiEntitiesBatch options.ModelVersion, options.IncludeStatistics, options.DomainFilter.GetString(), - _stringCodeUnit, + options.StringIndexType, cancellationToken); var response = result.GetRawResponse(); @@ -1111,7 +1108,7 @@ public virtual async Task> AnalyzeSentimentAsync(str options.ModelVersion, options.IncludeStatistics, options.IncludeOpinionMining, - _stringCodeUnit, + options.StringIndexType, cancellationToken).ConfigureAwait(false); Response response = result.GetRawResponse(); @@ -1171,7 +1168,7 @@ public virtual Response AnalyzeSentiment(string document, str options.ModelVersion, options.IncludeStatistics, options.IncludeOpinionMining, - _stringCodeUnit, + options.StringIndexType, cancellationToken); Response response = result.GetRawResponse(); @@ -1447,7 +1444,7 @@ private async Task> AnalyzeSentimentB options.ModelVersion, options.IncludeStatistics, options.IncludeOpinionMining, - _stringCodeUnit, + options.StringIndexType, cancellationToken).ConfigureAwait(false); var response = result.GetRawResponse(); @@ -1474,7 +1471,7 @@ private Response AnalyzeSentimentBatch(MultiLa options.ModelVersion, options.IncludeStatistics, options.IncludeOpinionMining, - _stringCodeUnit, + options.StringIndexType, cancellationToken); var response = result.GetRawResponse(); @@ -1811,7 +1808,7 @@ public virtual async Task> RecognizeLinkedEntit Response result = await _serviceRestClient.EntitiesLinkingAsync( new MultiLanguageBatchInput(documents), - stringIndexType: _stringCodeUnit, + stringIndexType: StringIndexType.Utf16CodeUnit, cancellationToken: cancellationToken).ConfigureAwait(false); Response response = result.GetRawResponse(); @@ -1867,7 +1864,7 @@ public virtual Response RecognizeLinkedEntities(string d Response result = _serviceRestClient.EntitiesLinking( new MultiLanguageBatchInput(documents), - stringIndexType: _stringCodeUnit, + stringIndexType: StringIndexType.Utf16CodeUnit, cancellationToken: cancellationToken); Response response = result.GetRawResponse(); @@ -2024,7 +2021,7 @@ private async Task> RecognizeL batchInput, options.ModelVersion, options.IncludeStatistics, - _stringCodeUnit, + options.StringIndexType, cancellationToken).ConfigureAwait(false); var response = result.GetRawResponse(); @@ -2049,7 +2046,7 @@ private Response RecognizeLinkedEntitie Response result = _serviceRestClient.EntitiesLinking(batchInput, options.ModelVersion, options.IncludeStatistics, - _stringCodeUnit, + options.StringIndexType, cancellationToken); var response = result.GetRawResponse(); @@ -2103,7 +2100,7 @@ public virtual async Task StartHealthcareAsync(string docum try { - ResponseWithHeaders response = await _serviceRestClient.HealthAsync(documentInputs, options.ModelVersion, _stringCodeUnit, cancellationToken).ConfigureAwait(false); + ResponseWithHeaders response = await _serviceRestClient.HealthAsync(documentInputs, options.ModelVersion, options.StringIndexType, cancellationToken).ConfigureAwait(false); string location = response.Headers.OperationLocation; IDictionary idToIndexMap = CreateIdToIndexMap(documentInputs.Documents); @@ -2152,7 +2149,7 @@ public virtual HealthcareOperation StartHealthcare(string document, string langu try { - ResponseWithHeaders response = _serviceRestClient.Health(documentInputs, options.ModelVersion, _stringCodeUnit, cancellationToken); + ResponseWithHeaders response = _serviceRestClient.Health(documentInputs, options.ModelVersion, options.StringIndexType, cancellationToken); string location = response.Headers.OperationLocation; IDictionary idToIndexMap = CreateIdToIndexMap(documentInputs.Documents); @@ -2302,7 +2299,7 @@ private HealthcareOperation StartHealthcareBatch(MultiLanguageBatchInput batchIn try { - ResponseWithHeaders response = _serviceRestClient.Health(batchInput, options.ModelVersion, _stringCodeUnit, cancellationToken); + ResponseWithHeaders response = _serviceRestClient.Health(batchInput, options.ModelVersion, options.StringIndexType, cancellationToken); string location = response.Headers.OperationLocation; var _idToIndexMap = CreateIdToIndexMap(batchInput.Documents); @@ -2325,7 +2322,7 @@ private async Task StartHealthcareBatchAsync(MultiLanguageB try { - ResponseWithHeaders response = await _serviceRestClient.HealthAsync(batchInput, options.ModelVersion, _stringCodeUnit, cancellationToken).ConfigureAwait(false); + ResponseWithHeaders response = await _serviceRestClient.HealthAsync(batchInput, options.ModelVersion, options.StringIndexType, cancellationToken).ConfigureAwait(false); string location = response.Headers.OperationLocation; var _idToIndexMap = CreateIdToIndexMap(batchInput.Documents); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsRequestOptions.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsRequestOptions.cs index 89641d571c050..f54f645597d5b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsRequestOptions.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsRequestOptions.cs @@ -40,5 +40,10 @@ internal TextAnalyticsRequestOptions(bool includeStatistics, string modelVersion /// . /// public string ModelVersion { get; set; } + + /// + /// StringIndexType + /// + public StringIndexType StringIndexType { get; set; } = StringIndexType.Utf16CodeUnit; } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/autorest.md b/sdk/textanalytics/Azure.AI.TextAnalytics/src/autorest.md index 727b220d0e6e9..8ef01c293b05b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/autorest.md +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/autorest.md @@ -7,7 +7,7 @@ Run `dotnet build /t:GenerateCode` to generate code. ``` yaml input-file: - - https://github.com/Azure/azure-rest-api-specs/blob/9b2689fe79302577b843f1cdf40f42330a67de08/specification/cognitiveservices/data-plane/TextAnalytics/preview/v3.1-preview.3/TextAnalytics.json + - https://github.com/Azure/azure-rest-api-specs/blob/a5dcb30f776c3f07e937912a9a163b2ec2bbbef8/specification/cognitiveservices/data-plane/TextAnalytics/preview/v3.1-preview.3/TextAnalytics.json ``` ### Make generated models internal by default @@ -47,4 +47,4 @@ directive: transform: > $.properties.id["x-nullable"] = true; $.properties.text["x-nullable"] = true; -``` \ No newline at end of file +``` diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomain.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomain.json index 48d45ccb15f73..e5f40088b2e2a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomain.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomain.json @@ -1,21 +1,14 @@ { "Entries": [ { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Content-Length": "311", + "Accept": "application/json, text/json", + "Content-Length": "345", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-885370a4ee7b5f44bc1b2308111a366c-d528849736b05e4b-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "cfe8e2f8ee3911d883f149c5ba708a25", "x-ms-return-client-request-id": "true" }, @@ -34,7 +27,8 @@ { "parameters": { "domain": "phi", - "model-version": "latest" + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" } } ] @@ -43,55 +37,49 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "57ec227e-4183-4165-8d39-f5b4092d840b", - "Date": "Tue, 17 Nov 2020 20:07:57 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", + "apim-request-id": "7f73f573-6055-4476-9530-e4127ad48983", + "Date": "Fri, 15 Jan 2021 21:56:52 GMT", + "operation-location": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "201" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "218" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "0af6547e6d21f99df5e133f9fb1abff6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "14b8082a-8381-48fb-ada8-ed452d5d212e", + "apim-request-id": "6e4fdde9-1a50-4b41-b6a0-33b378731d71", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:07:57 GMT", + "Date": "Fri, 15 Jan 2021 21:56:52 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": "25" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:52Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:52Z" }, "completed": 0, "failed": 0, @@ -101,44 +89,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "1ffe04ae50f965a11f4bc1da8e14f022", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "171bad8a-4326-413d-8ba8-74cd5c054a42", + "apim-request-id": "0dfddc63-7296-4e49-b754-3ef1fc4f1b67", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:07:58 GMT", + "Date": "Fri, 15 Jan 2021 21:56:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "68" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "71" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", - "status": "notStarted", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", + "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -148,44 +130,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "1647a062e0a88b5844efda57badf1569", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6a4323aa-2ae2-43a1-8df1-d864e1d88ee9", + "apim-request-id": "c29810ab-5fbc-4729-be35-22bf40744ab7", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:07:59 GMT", + "Date": "Fri, 15 Jan 2021 21:56:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "79" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "75" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -195,44 +171,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b61653316b722e2cb391ead5abc26ae0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1c369837-268d-46bf-ad20-310f63e77c7c", + "apim-request-id": "40b7e88d-09b4-4a54-a7ec-984346523e1b", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:01 GMT", + "Date": "Fri, 15 Jan 2021 21:56:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "1083" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -242,44 +212,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "5a9611f1a9d2cd4dab72da09754aaa40", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c85dadda-9e0a-4144-9696-88b70b5ed3d4", + "apim-request-id": "ad3a2cb8-b3de-481b-b389-bd3abc6462fd", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:02 GMT", + "Date": "Fri, 15 Jan 2021 21:56:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "48" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -289,44 +253,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "3ba9583539fdf7af74196317f682e081", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "65c3ed62-0cc9-4095-8792-3739be23c3ab", + "apim-request-id": "0a7eef74-8d7e-4e92-a203-0fcc9dd987e1", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:03 GMT", + "Date": "Fri, 15 Jan 2021 21:56:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -336,44 +294,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "a966f984bb48889605490aff9122b869", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "527201e3-84a2-4b22-97b9-76a01b0394c8", + "apim-request-id": "923516fc-065e-436e-9e24-7deb2b49f388", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:04 GMT", + "Date": "Fri, 15 Jan 2021 21:57:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "65" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -383,44 +335,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "52a0a9e62e19b7e3619fe5b94536d629", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "11c316cc-f7bb-40da-9bfb-ec6e0198f1ab", + "apim-request-id": "3974fb4b-0d2d-426b-b801-76fe3088c3b9", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:05 GMT", + "Date": "Fri, 15 Jan 2021 21:57:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "62" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "88" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -430,44 +376,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "7c84589201e47af8c22036b42eb06652", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8cfddda7-f460-407b-8916-dec4a92bf90b", + "apim-request-id": "c9366636-65b1-4dab-9832-a4ebc4022052", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:06 GMT", + "Date": "Fri, 15 Jan 2021 21:57:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -477,44 +417,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4c31fa618de2566816ae47a9d5dc42cf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e4c66194-6dba-4432-86bb-3f094cae7c4f", + "apim-request-id": "10c0df89-51a6-4903-8383-6ff549f7ef7b", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:08 GMT", + "Date": "Fri, 15 Jan 2021 21:57:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "78" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "71" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -524,44 +458,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "386ce1723b9de485b12590f8f82e88b1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "874221e1-c17c-4332-9f0d-2ee4b5b11f0d", + "apim-request-id": "4af14c32-d55c-4fd9-aa80-112b07044663", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:09 GMT", + "Date": "Fri, 15 Jan 2021 21:57:06 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": "67" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -571,44 +499,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4b5893388a040546f02e6635b94ea5e5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a1fd952a-93e8-4ba3-8b26-3dceb8c02aea", + "apim-request-id": "e90dee10-234d-43ae-ba23-ad0699b9fe23", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:11 GMT", + "Date": "Fri, 15 Jan 2021 21:57:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "56" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "50" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -618,44 +540,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4d4166de2e4325b5754c9abcfc6f5de7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8843bd83-b558-437d-b231-01131f590c2e", + "apim-request-id": "9b62c674-19cf-41ab-8e6b-4e1052342565", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:12 GMT", + "Date": "Fri, 15 Jan 2021 21:57:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "53" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -665,44 +581,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "41709625f784e8cb9b67476ed54f2b62", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b039c45f-06b8-4c13-b877-2385e381a51f", + "apim-request-id": "978597ce-27e2-474a-a698-b47e4039edf9", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:13 GMT", + "Date": "Fri, 15 Jan 2021 21:57:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "74" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -712,44 +622,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "921aaa803bed0a6edd33d6b7ef8a0880", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0f3291ae-4317-4570-8eed-16eea020108d", + "apim-request-id": "493bc56c-4c89-4f40-95df-3c13056ccfad", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:14 GMT", + "Date": "Fri, 15 Jan 2021 21:57:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "56" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -759,44 +663,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "220f7ed163dee7609b59b2dbe6464f25", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "aa044e20-a0d4-4ed8-9e12-ace60f1a28bf", + "apim-request-id": "1a2df2b5-be87-4d84-b269-ca7367ef3994", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:15 GMT", + "Date": "Fri, 15 Jan 2021 21:57:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "70" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -806,44 +704,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "513b3721cb55eafa286564512013f810", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "910098f6-dca4-48c4-b4d4-cb39a6f9885f", + "apim-request-id": "88e02120-0798-4572-ae9d-9478999c94cc", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:17 GMT", + "Date": "Fri, 15 Jan 2021 21:57:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "60" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -853,44 +745,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "569dc65e083f1d844a33f69389922497", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fd9d92b9-37e6-467e-ac07-e393398a3642", + "apim-request-id": "408921e8-2751-4d92-a555-a450709927e4", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:18 GMT", + "Date": "Fri, 15 Jan 2021 21:57:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "52" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -900,44 +786,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b795b0e3b74e062b8425fa78ff0fc687", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "45969614-f9df-4fa8-b4ab-76eddede0628", + "apim-request-id": "566e50b7-9f9c-4dcb-ac32-bb7d65a53d94", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:19 GMT", + "Date": "Fri, 15 Jan 2021 21:57:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "76" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "86" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -947,44 +827,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "1f7da160f8a919e6b31e0721d4676096", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3ec721b4-4190-4510-a131-7ff5c3138b31", + "apim-request-id": "fcef7bd7-dfaa-4aef-85b1-c1385957e76c", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:20 GMT", + "Date": "Fri, 15 Jan 2021 21:57:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "49" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -994,44 +868,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "706dcc41417da7c29b97d2190d0c1e3a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "68235c43-653c-4892-8743-0a63cf54b00e", + "apim-request-id": "246c3c9b-ee8d-42fc-9e25-03b75b488382", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:21 GMT", + "Date": "Fri, 15 Jan 2021 21:57: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-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -1041,44 +909,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e8326f6d0514ebedca7c0430af09311d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9157d90b-3aff-48f0-a70c-f50172b553a8", + "apim-request-id": "9236aa17-cc99-4833-99db-ee348aaf8fd7", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:23 GMT", + "Date": "Fri, 15 Jan 2021 21:57:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "41" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "48" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -1088,44 +950,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "323763c556a21f09ded5841225cc0ba7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ff85b691-a2d4-46fe-9fcc-359d6b1552f1", + "apim-request-id": "8b61ab14-5422-4b2c-ba9c-27cc3ca77890", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:24 GMT", + "Date": "Fri, 15 Jan 2021 21:57:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "41" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -1135,44 +991,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "64b4cdff78343c81df81a6013c91f891", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "da4206a9-98e1-4ca6-8da5-c3d86bca3f27", + "apim-request-id": "5934504e-4a5b-48b1-a106-f1db031f245f", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:25 GMT", + "Date": "Fri, 15 Jan 2021 21:57:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "80" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -1182,44 +1032,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "aa54b565ecd417976513093e80dbc5fd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a6200d4a-86a6-48a0-8a78-0e016e6876b7", + "apim-request-id": "b5ec5cf7-e352-4c03-ab94-c08c429ebb26", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:27 GMT", + "Date": "Fri, 15 Jan 2021 21:57:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "74" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -1229,44 +1073,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e2305d70cc544ce8e2fa5220af07e24c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bfc660db-3e2b-4ca6-9b86-691d68b06799", + "apim-request-id": "b5b0b1d4-93df-4e4d-b3f7-001b4b97d49c", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:28 GMT", + "Date": "Fri, 15 Jan 2021 21:57:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "35" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -1276,44 +1114,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "70acf2dd617813d2359dff216e43bb04", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7ce09953-34f2-454f-bcfd-836bcfc21e73", + "apim-request-id": "838b3178-a105-48c1-84fe-6d121e799843", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:29 GMT", + "Date": "Fri, 15 Jan 2021 21:57:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "41" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "63" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -1323,44 +1155,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "df91a9bb1561983ccc07c8da9977675d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f40d35e5-302e-493a-99ba-22cd2efcbfd6", + "apim-request-id": "90c9b226-f671-4675-b469-5b2a0b875593", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:30 GMT", + "Date": "Fri, 15 Jan 2021 21:57:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -1370,44 +1196,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "8e60bc30552e0e848b1cacb7cdc7dd9f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "10cd9ce5-474c-43e6-89ac-c1d038942678", + "apim-request-id": "42a2e4d9-545f-40f3-86d4-fec305461343", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:31 GMT", + "Date": "Fri, 15 Jan 2021 21:57:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "59" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "61" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -1417,44 +1237,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "06654e3f0376c7ebb614a37099f87abe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c0280e8b-2aef-44c2-ac4a-e05ee8675bd5", + "apim-request-id": "d75b3a36-4a02-47fe-843c-d58536b3c29e", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:32 GMT", + "Date": "Fri, 15 Jan 2021 21:57:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "59" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -1464,44 +1278,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b2f0a1362de265d5248254446985cb04", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b0ded8c0-082c-471f-953f-7c3558547769", + "apim-request-id": "7e93e9d2-af19-4ab9-9a49-f35ad1d05b71", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:34 GMT", + "Date": "Fri, 15 Jan 2021 21:57:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "48" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "64" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -1511,44 +1319,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4a9a282a60112de7d198d81ab1147592", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "88dab56a-8f09-4a4c-a1d8-8d064c779b8c", + "apim-request-id": "c305c783-6db6-4e12-ae62-392cf8dc5210", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:35 GMT", + "Date": "Fri, 15 Jan 2021 21:57:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "62" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -1558,44 +1360,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "2b80eea22bd612bc78ffe2f3aea65e30", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ec7ff8ea-2158-4f8e-a10a-eae33b99cb24", + "apim-request-id": "d41ea1db-b1fe-4468-a9ea-a264bcaf5548", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:36 GMT", + "Date": "Fri, 15 Jan 2021 21:57:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "83" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -1605,44 +1401,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "70459f492f5dd6acbac3e14954bbb40f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "057c73e9-ef5e-4ab1-a054-b689c8dfbe22", + "apim-request-id": "3fb49631-feae-4600-bf29-944e040015e7", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:38 GMT", + "Date": "Fri, 15 Jan 2021 21:57:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -1652,44 +1442,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "7aa2c10d9f04ff2e6c88d2127df37e2a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8ee6e02e-c525-474e-9bfd-9f116ee46380", + "apim-request-id": "afde8370-4525-4b7b-af95-947412dcde7b", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:39 GMT", + "Date": "Fri, 15 Jan 2021 21:57:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "64" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "58" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -1699,44 +1483,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "12d1a73a04ce733541aa71124973bdbc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d35de3a0-6cd9-4e61-99e3-11c0248b0657", + "apim-request-id": "f53688d0-b3c4-49df-b292-5b1d5ae05206", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:40 GMT", + "Date": "Fri, 15 Jan 2021 21:57: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-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -1746,44 +1524,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ede6d34be304a92c704604d55d9a58c6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2748167c-80d6-4469-95ac-8441fd63bc38", + "apim-request-id": "1a82c8fd-d384-4b9e-8f80-2fdd061c6706", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:41 GMT", + "Date": "Fri, 15 Jan 2021 21:57:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "69" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -1793,44 +1565,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ad0eb645a1ea09408c2f395a2d1bb5f8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "039704ae-6f74-4af9-935e-3ea68687578b", + "apim-request-id": "9fa616c9-f3f5-4146-8d62-7c3b97e72749", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:43 GMT", + "Date": "Fri, 15 Jan 2021 21:57:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "54" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -1840,44 +1606,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "aac615ca910d56257b27a187ff5f15a7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "55046230-0b7c-4edc-bd64-0c457d948fd3", + "apim-request-id": "aaaf2579-ce76-42fc-8e9a-f0448e87b93c", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:44 GMT", + "Date": "Fri, 15 Jan 2021 21:57:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "60" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -1887,44 +1647,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "93cdab521065aad192dc60d5aad17c55", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "74caad62-c1b8-44ca-a452-925083db6db0", + "apim-request-id": "4100817d-6786-449e-b36a-b50a954828f4", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:45 GMT", + "Date": "Fri, 15 Jan 2021 21:57:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "76" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -1934,44 +1688,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "470b0c91add3b4b891b832c3ffb8092c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6c6395e4-3465-4a8e-8a4b-8ee754361dac", + "apim-request-id": "fb6129c0-8e3d-48ba-bd3d-0b4913a93483", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:46 GMT", + "Date": "Fri, 15 Jan 2021 21:57:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "53" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -1981,44 +1729,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "82089119214eba93431c18303050aca9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f389e42e-b0fa-4902-ac38-a034e8cb9ad4", + "apim-request-id": "72ecf161-3628-44b3-ab7c-f37ba0dcb093", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:47 GMT", + "Date": "Fri, 15 Jan 2021 21:57:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -2028,44 +1770,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f3f64caace54a4d3f21801addd0eabd9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6819e5e3-c636-4f1e-82db-7beacd09a1c4", + "apim-request-id": "e5a694e1-9813-4ff3-abf0-e6b856beafa2", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:49 GMT", + "Date": "Fri, 15 Jan 2021 21:57:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "48" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -2075,44 +1811,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "18bc34d3fac96f07795003b695878341", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fad271f5-6131-4965-b156-ef879d8f829d", + "apim-request-id": "ebef5808-06cc-4c9d-857a-c5751e6dcbf7", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:50 GMT", + "Date": "Fri, 15 Jan 2021 21:57:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "73" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "83" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -2122,44 +1852,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b218890b15c24ad7be638f3520e6dc35", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "74b91a2a-8d5a-4f1e-8705-0a6d194b82dc", + "apim-request-id": "b8f4164c-c009-4822-a7d4-d671a7d58691", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:51 GMT", + "Date": "Fri, 15 Jan 2021 21:57:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "64" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -2169,44 +1893,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "fc5d3e719393b0df45867a04ca1c0e6a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d54b9be6-792c-40b0-a6a7-2683f4974b12", + "apim-request-id": "da511042-9db5-448a-893b-c6bd987fa4ea", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:52 GMT", + "Date": "Fri, 15 Jan 2021 21:57:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "62" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -2216,44 +1934,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "54a1c094f8f5be175c715a656ad14f92", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6d19fee1-03ed-42ef-851f-25c3496450ea", + "apim-request-id": "92b1c382-420a-48f3-9c33-7beba17852fe", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:54 GMT", + "Date": "Fri, 15 Jan 2021 21:57:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -2263,44 +1975,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "5745cd74872a78ada9676d3c9ad37fa1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7b3452e9-3ce1-4fcc-a6c7-11c6f2ed06c0", + "apim-request-id": "89512a53-c376-40aa-961c-e195a1d02e9f", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:55 GMT", + "Date": "Fri, 15 Jan 2021 21:57:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "59" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -2310,44 +2016,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "5fa0245588447940279e9f2239794674", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f9eeb22d-9e69-4839-92ca-624fe03f6e9a", + "apim-request-id": "98802100-65a8-4d2a-a2af-c7ad2e6559ec", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:56 GMT", + "Date": "Fri, 15 Jan 2021 21:57:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "86" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -2357,44 +2057,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "fd90e736b7d70d3f1329aa8d8bda2389", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "247d5862-aa74-4ec2-8790-77f9e5e37d82", + "apim-request-id": "1bb249a2-eac4-4b76-a0a8-7fc5ab8c5b8a", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:57 GMT", + "Date": "Fri, 15 Jan 2021 21:57:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -2404,44 +2098,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4510b9f1f030eb4d8dcc308be88b3e30", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6c7cb22d-6e3e-4be2-83ed-fb17cde9d38e", + "apim-request-id": "a2fc0121-5358-4b97-b2c4-c50d7c588c6c", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:08:58 GMT", + "Date": "Fri, 15 Jan 2021 21:57:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "62" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "52" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -2451,44 +2139,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b305f92182439dc9e4934b1bddb2ed4c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "baa5a4bc-7a00-45a7-a188-d7418c6acc5f", + "apim-request-id": "cdbddf71-ce24-4b2d-aed8-1c054c5f8d98", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:00 GMT", + "Date": "Fri, 15 Jan 2021 21:57:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "74" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -2498,44 +2180,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "7f30167b0168464399a46f0b87b42488", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "968e90f9-c093-41f2-998e-2b7a998260a3", + "apim-request-id": "397877ab-6b18-4541-9454-a961157d1278", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:01 GMT", + "Date": "Fri, 15 Jan 2021 21:57:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "63" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "62" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -2545,44 +2221,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "926c7aea70d56f45ef72609da4320edb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e19ec7f1-eb7a-4225-a4a1-f228ee3c20d1", + "apim-request-id": "c3e94e72-0e4a-4e39-a38c-bd9b8b4038f4", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:02 GMT", + "Date": "Fri, 15 Jan 2021 21:57:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "63" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -2592,44 +2262,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d210e3debe5b20c7b5bf199f13bd1630", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "64a87bed-f6df-4359-a394-b5b21dd828d1", + "apim-request-id": "da6a92cc-0419-4280-92a9-a2efe8869a82", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:04 GMT", + "Date": "Fri, 15 Jan 2021 21:57:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "68" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "78" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -2639,44 +2303,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "6331c36e5b460b76d0c190f6a0a5a167", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "81eb450d-2672-4a28-9494-aadc2860d981", + "apim-request-id": "0bc69634-617f-45a6-addc-79724e99b05a", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:05 GMT", + "Date": "Fri, 15 Jan 2021 21:58:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "72" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -2686,44 +2344,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "a32d949552a32b2db24bdc1656a65b31", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5bcfa008-8b1d-445b-b6a2-38eb7494145a", + "apim-request-id": "29ce0d6a-09cc-424a-970a-b410db3b8616", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:06 GMT", + "Date": "Fri, 15 Jan 2021 21:58:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "51" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -2733,44 +2385,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e12e2f5caa0082946d05019a2ed17f10", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d417dc6a-d03a-4bae-a902-550a7e44a35d", + "apim-request-id": "30ab9b4a-56cd-44ca-b764-38be19afee4b", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:07 GMT", + "Date": "Fri, 15 Jan 2021 21:58:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -2780,44 +2426,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "7f09b11d72901c8d9606b0fa7e60b42a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "04d65c09-e7b2-4027-b6ac-cb068a658921", + "apim-request-id": "f65489b1-76e6-407e-8a3c-0a1f7d25a0e5", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:08 GMT", + "Date": "Fri, 15 Jan 2021 21:58:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -2827,44 +2467,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "71995e65c077eb67ffaa369e5093fce1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5f1bdfb8-f912-4c35-be84-d5cd788eb0e6", + "apim-request-id": "6b123e65-7a43-4f05-9078-63ae1b9c7c4a", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:10 GMT", + "Date": "Fri, 15 Jan 2021 21:58:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "54" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "60" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -2874,44 +2508,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "a5f8ccccdc9ce9a1a1124bf9f99a040c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1a0ea0df-098a-4ee2-ba7c-d5cc084f03a9", + "apim-request-id": "3777ef0b-0072-40ff-93cf-d686384cdb7b", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:11 GMT", + "Date": "Fri, 15 Jan 2021 21:58:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "55" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -2921,44 +2549,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d034d7510e375d994a1e7fe63cefcb03", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a486bf23-8671-44ec-ac98-a25f71847f88", + "apim-request-id": "ad9a581e-a11a-4d37-887f-a9316615dc64", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:12 GMT", + "Date": "Fri, 15 Jan 2021 21:58:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "90" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "66" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -2968,44 +2590,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b22ecf0a0e67888dbdb0cf65756df164", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e1c3c7a2-7bbc-4e51-92b8-e3c0fcaf1dda", + "apim-request-id": "a9b77573-262f-4282-a800-61ce42fac6bc", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:13 GMT", + "Date": "Fri, 15 Jan 2021 21:58:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "49" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "62" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -3015,44 +2631,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "794d29a62c5ebda9339b5b7e5cbaacb2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "46d7245f-9fa1-4d05-a413-f7ba7004888e", + "apim-request-id": "5f25a70e-547d-4ea3-bf8c-d1d3bcbe0fce", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:14 GMT", + "Date": "Fri, 15 Jan 2021 21:58:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "59" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "63" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -3062,44 +2672,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "29ef4846516c42a549ac12863f33e8dc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "70a47730-2d83-474d-8a7e-8219f0f8e5eb", + "apim-request-id": "c4b0de40-aeda-4f0f-92c6-04be2967ec6d", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:15 GMT", + "Date": "Fri, 15 Jan 2021 21:58:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "58" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "80" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -3109,44 +2713,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "12401b2c51a2dda425707fcbb30f2b02", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "07eef31e-f9d1-4cfa-89cf-f3a89dc9c9e6", + "apim-request-id": "db049aca-6c71-47f8-adce-29956ed2928f", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:17 GMT", + "Date": "Fri, 15 Jan 2021 21:58:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -3156,44 +2754,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "2c1e1c03c77d54f8840a30b119237eff", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3c071c20-fde6-4280-91ae-c4bcfcbe8f0b", + "apim-request-id": "5cfba11b-6c60-43b1-972d-efc655708a3d", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:18 GMT", + "Date": "Fri, 15 Jan 2021 21:58:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "57" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -3203,44 +2795,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "41517eb39a7af410a31103fcd2d98e39", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6af048a5-28da-407a-a550-89f709f2ff0b", + "apim-request-id": "6958d6bd-dd29-4496-a10d-5a4323c83392", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:19 GMT", + "Date": "Fri, 15 Jan 2021 21:58:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "53" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -3250,44 +2836,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "22821080bb15655e22eb8e9721f2c402", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ad8a4fa2-dfbb-4953-8e7e-f0025ad2b441", + "apim-request-id": "d8120a17-2fb4-44c7-90a7-9dfe6d5d77d0", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:20 GMT", + "Date": "Fri, 15 Jan 2021 21:58:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "54" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -3297,44 +2877,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "341880f1eabe69880c29896cc3fc82aa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "107e7325-6d95-446d-bc45-dea4f09cd4d8", + "apim-request-id": "ad0c8aae-c7ba-4499-8137-5da99d47453c", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:22 GMT", + "Date": "Fri, 15 Jan 2021 21:58:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -3344,44 +2918,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "0831f67c5ca0f7e920ec1e8e0b78d3b0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ac8aae26-ab1e-4cb5-9923-a9ff7bf0a7d0", + "apim-request-id": "d7fa9ae3-39e1-4669-95a7-38086af3a468", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:23 GMT", + "Date": "Fri, 15 Jan 2021 21:58:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "67" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -3391,44 +2959,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "520a014c59c1967b871815eb31f2a126", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cc21f564-d2b4-44cd-9746-9f7b0f9ad903", + "apim-request-id": "fcf8fad5-760a-438e-9d08-a5da58021c97", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:24 GMT", + "Date": "Fri, 15 Jan 2021 21:58:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "67" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -3438,44 +3000,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "2b1ae469bbc19462962014d1cbfa5e93", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "57f381e4-08a1-4be1-8003-5a4934a0c873", + "apim-request-id": "c3eae3cc-045b-4b2d-9a8e-18be0a711bef", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:26 GMT", + "Date": "Fri, 15 Jan 2021 21:58:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "50" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -3485,44 +3041,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c21fd95630f122e97a9b818746fec62e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d84522ed-ae1a-4d26-8af3-e7a31e115944", + "apim-request-id": "78a3beb2-3ec3-4e88-8024-0e2cd06a6f89", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:27 GMT", + "Date": "Fri, 15 Jan 2021 21:58:23 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": "69" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -3532,44 +3082,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "2725f84aa75d91ef9e76bba045aaca8d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0af3cc5c-1c98-48f7-b64d-d8966bf56a1f", + "apim-request-id": "2ea4576c-7419-4f3f-a0c5-9b265cea3f30", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:28 GMT", + "Date": "Fri, 15 Jan 2021 21:58:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "90" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -3579,44 +3123,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "589582baded33935faf8b0263ada4d98", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7650e1e3-061e-43d0-a729-da91496d6e48", + "apim-request-id": "fd252259-2a1d-42df-975d-f8bfd5f30fb0", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:29 GMT", + "Date": "Fri, 15 Jan 2021 21:58:25 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": "42" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -3626,44 +3164,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d386e55a36d4ae35e98e237b7449ddd0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "37e6ac0b-d244-473d-8051-5ff308f524df", + "apim-request-id": "412f03a1-67a7-49a1-bdc1-cf59451a3245", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:31 GMT", + "Date": "Fri, 15 Jan 2021 21:58:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -3673,44 +3205,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c4cdf3d06d686c5bc3ec2c65f7c956c3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a1dd4498-84e1-4659-b605-89fbcd68520c", + "apim-request-id": "528668ed-34b3-4a62-96e1-777632031736", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:32 GMT", + "Date": "Fri, 15 Jan 2021 21:58:28 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": "49" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -3720,44 +3246,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "5f452328f72383b84ce66e44bab9c4b1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "56acf456-f38d-4a58-af92-74cc0c18e6fd", + "apim-request-id": "be7782f4-b454-47cb-939c-bd561b567690", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:33 GMT", + "Date": "Fri, 15 Jan 2021 21:58:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -3767,44 +3287,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4655e01b890ded2f8a1a0fe80acfb720", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b9b7b88e-ffd0-4d90-939d-8c2ebb52a836", + "apim-request-id": "4cc61a38-be3f-463b-a38c-33749afc2f50", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:34 GMT", + "Date": "Fri, 15 Jan 2021 21:58:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "60" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -3814,44 +3328,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "505260377d03d8ad3b497782fe16b109", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ed2e2d30-ef37-45ca-b94d-4aa531036f28", + "apim-request-id": "594a55a7-0f6a-4dd7-ab63-416d64c50586", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:36 GMT", + "Date": "Fri, 15 Jan 2021 21:58:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "68" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -3861,44 +3369,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "174a7b270f739fb5f458d508e7cf797c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a1008ce7-cedf-40bc-848d-90123f4b1c07", + "apim-request-id": "c86b2f9f-dd69-418f-a5b5-c8c2933d1101", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:37 GMT", + "Date": "Fri, 15 Jan 2021 21:58:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "48" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -3908,44 +3410,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "5a0d4d2f73679dae327c0bc411adee74", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "34828e56-470d-4176-9496-acd4d6b5fcfd", + "apim-request-id": "0133b4cd-45b9-49ad-a614-96a786e6e754", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:38 GMT", + "Date": "Fri, 15 Jan 2021 21:58:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "37" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "38" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -3955,44 +3451,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "8ec10668a08527adaab35caba8a4f16b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "035ed4a7-b270-4d86-9933-c78b0c3c541b", + "apim-request-id": "99b46ef7-bddd-4661-8481-de832f679126", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:39 GMT", + "Date": "Fri, 15 Jan 2021 21:58:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "55" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "49" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -4002,44 +3492,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b052fbd05708b3a2cdade4f604f18d46", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "42523c0e-45e5-438b-9192-a40f7ef0ec75", + "apim-request-id": "d18b1c32-ea21-433e-89d5-0b15e16fcc08", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:40 GMT", + "Date": "Fri, 15 Jan 2021 21:58:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "67" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -4049,44 +3533,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e19f6069ea0e8ff7a0e5b0b31702f58e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "006ee0db-d948-4393-aa0b-bf3dd3e2eecb", + "apim-request-id": "1d5cb23e-f43a-4813-94c7-d9bbf2ad362d", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:41 GMT", + "Date": "Fri, 15 Jan 2021 21:58:37 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": "58" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -4096,44 +3574,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "16f39f8b3d5a116b640dc1d8bbb623b8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1d1babf7-d448-480c-bd2c-526e95aa8be2", + "apim-request-id": "a51cb115-52f6-4754-ae0c-110f516c69f8", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:43 GMT", + "Date": "Fri, 15 Jan 2021 21:58:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "48" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "79" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -4143,44 +3615,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "474115251004e55c03c31023a6ee9cca", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f283edf0-d96a-41cb-8197-ecc651d9c136", + "apim-request-id": "886531f1-4df1-40eb-9197-6554562cc869", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:44 GMT", + "Date": "Fri, 15 Jan 2021 21:58:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "84" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "80" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -4190,44 +3656,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "646b55b777fd2cecf58e7c01291fd3e9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "70be1fae-9e51-49f6-b2dd-ee9447a66241", + "apim-request-id": "c4172df2-1873-440d-bd6a-ac3545ee98a7", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:45 GMT", + "Date": "Fri, 15 Jan 2021 21:58:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -4237,44 +3697,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "018ef7c2adc17b89430e12972d486a75", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cdb0393b-08fb-40ae-910f-f0bd5378ff8d", + "apim-request-id": "7d1c88b7-4973-47fd-899e-0e46c1c25f63", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:47 GMT", + "Date": "Fri, 15 Jan 2021 21:58:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -4284,44 +3738,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "6520f670be4aadba29155276935bbbe3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1f18a751-e28c-4b65-9ee2-412000a4280b", + "apim-request-id": "f0d4500d-452d-41d9-a907-803f73ad0e0f", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:48 GMT", + "Date": "Fri, 15 Jan 2021 21:58:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "56" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "64" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -4331,44 +3779,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "af6026ef9b600a08ccf021ef6454fead", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a63230fc-057b-4a0b-b26b-583160eb4c9d", + "apim-request-id": "f2c2a138-08bc-469a-bb86-7afa5ece88a8", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:49 GMT", + "Date": "Fri, 15 Jan 2021 21:58:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "60" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "68" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -4378,44 +3820,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "329006236dff039f3de0d7ac5a13e8e8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9fe63ae2-5fc2-4ce4-b443-b1df90fe1033", + "apim-request-id": "819d51a8-643f-4bf5-a87f-05a88f92e501", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:50 GMT", + "Date": "Fri, 15 Jan 2021 21:58:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "63" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "60" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -4425,44 +3861,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "06a72f52bbe7d515ee15995a9dcb49d5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "32903682-c105-4826-b528-5aa2be79a6b3", + "apim-request-id": "4382a7fb-a9a5-4f2d-8f1b-f4dfbfa8da43", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:51 GMT", + "Date": "Fri, 15 Jan 2021 21:58:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "41" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -4472,44 +3902,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "8c53a51688ca81e4875d717fc45cafb8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "92e8420a-8621-4516-8d19-19a05888b74c", + "apim-request-id": "882da9af-834f-43d0-b865-1a198f891458", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:52 GMT", + "Date": "Fri, 15 Jan 2021 21:58:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "57" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "68" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -4519,44 +3943,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "359c3808f8ad67c5f1bb44e9d4446572", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8e42a41c-5437-4db1-9bb0-05d7aaed2b56", + "apim-request-id": "fe25e66d-5674-4b8e-822d-5f676f03c6cf", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:53 GMT", + "Date": "Fri, 15 Jan 2021 21:58:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "49" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "61" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -4566,44 +3984,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b59602975bc0ca1d4a257f894a961191", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "631a8fcf-f949-4ab9-b402-951a10a59e0c", + "apim-request-id": "a7a46f2e-6806-4749-8f0e-5332ceb46ea2", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:55 GMT", + "Date": "Fri, 15 Jan 2021 21:58:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "53" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -4613,44 +4025,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "6552e166132e1d28dfeb9b0e44faad42", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "448356f5-69ab-47f8-9823-88360bc16bee", + "apim-request-id": "6587942c-efe0-4879-a8b2-5891b83ef4f8", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:56 GMT", + "Date": "Fri, 15 Jan 2021 21:58:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "49" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "54" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -4660,44 +4066,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c2e8fff7fac6acf81ad2ea87783c1d5a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "25c4490d-c75a-44c6-90b9-18a483f08576", + "apim-request-id": "014b5071-618c-4801-bec0-632e63804b12", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:58 GMT", + "Date": "Fri, 15 Jan 2021 21:58:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "61" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -4707,44 +4107,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f283b3aa00f28343d978d6d4c00f8550", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "af2c2889-6f08-4d77-81c3-cfa070ff8048", + "apim-request-id": "7957c353-60c0-4442-b31f-75b2ce2580d0", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:09:59 GMT", + "Date": "Fri, 15 Jan 2021 21:58:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "78" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -4754,44 +4148,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4a913c774ead6bcbe9a54a5c28a0a4a3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "647ca8dd-5967-452e-9120-956861703b88", + "apim-request-id": "4b17d388-cadb-44c6-9062-438ce2582d79", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:00 GMT", + "Date": "Fri, 15 Jan 2021 21:58:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "60" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "62" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -4801,44 +4189,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "916440cebb76f74fbc64e84d2423eb0b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "df800e46-2f30-434a-84e8-476bf70ed251", + "apim-request-id": "98ba3804-3284-4b4b-a440-93692f42f1ef", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:01 GMT", + "Date": "Fri, 15 Jan 2021 21:58:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "63" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 0, "failed": 0, @@ -4848,185 +4230,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "3b0f9a4cd2aa5bade717094db6e65a39", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7eeabd1f-4485-4483-957b-ba8901c6f424", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:02 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "37" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "800532d3f4abbcd9ed9a8d48667d47c5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "63ef2aca-19f1-4d33-b36d-64949d29cb53", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:04 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "49" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "8d103eb96990fcf89308a95fb10240d6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "80b6356c-7fa4-4f27-a89a-556944c662af", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:05 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "84" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f17aae096b1e5760c1534e104464f469", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ddd6cca3-6dbe-4ee0-8260-e870f08c975c", + "apim-request-id": "c16575cd-9208-42d8-9009-77126dd41bed", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:06 GMT", + "Date": "Fri, 15 Jan 2021 21:58:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "95" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "125" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "678c8be8-0d21-4f1c-a5d3-8c41e243dc20_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:07:57Z", - "createdDateTime": "2020-11-17T20:07:57Z", - "expirationDateTime": "2020-11-18T20:07:57Z", + "jobId": "33f97eb5-9568-463d-889c-3d428403bd08_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:56:53Z", + "createdDateTime": "2021-01-15T21:56:52Z", + "expirationDateTime": "2021-01-16T21:56:52Z", "status": "succeeded", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57Z" + "lastUpdateDateTime": "2021-01-15T21:56:53Z" }, "completed": 1, "failed": 0, @@ -5035,7 +4270,7 @@ "entityRecognitionPiiTasks": [ { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:07:57.6058526Z", + "lastUpdateDateTime": "2021-01-15T21:56:53.1069892Z", "results": { "inTerminalState": true, "documents": [ @@ -5073,6 +4308,6 @@ "Variables": { "RandomSeed": "390387714", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://ta-s-westeurope.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomainAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomainAsync.json index de304c3a708ae..be20f3619d59e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomainAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomainAsync.json @@ -1,21 +1,14 @@ { "Entries": [ { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Content-Length": "311", + "Accept": "application/json, text/json", + "Content-Length": "345", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f62e67b67c75604a8b7e5c3ed4e4f0e2-f89e33ce9b23d54c-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "dbcf75b1d6cb24fdb41d742a5d142b0a", "x-ms-return-client-request-id": "true" }, @@ -34,7 +27,8 @@ { "parameters": { "domain": "phi", - "model-version": "latest" + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" } } ] @@ -43,55 +37,49 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "7e6fcd62-47db-427b-b2ea-15e5befb55bd", - "Date": "Tue, 17 Nov 2020 20:12:26 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", + "apim-request-id": "86164059-bc49-44bf-9a64-4c138b397f15", + "Date": "Fri, 15 Jan 2021 21:58:59 GMT", + "operation-location": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "206" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "173" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4c8042efa9b72511ebff89e389aea38e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4b330b95-4fdb-4179-a13d-07755718acf0", + "apim-request-id": "ede0a87c-7033-474b-aadd-4c781df5cbfe", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:26 GMT", + "Date": "Fri, 15 Jan 2021 21:58:59 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": "11" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:26Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:58:59Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:26Z" + "lastUpdateDateTime": "2021-01-15T21:58:59Z" }, "completed": 0, "failed": 0, @@ -101,44 +89,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d874985d95266ebb9878278edaa670b9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a7f2aea8-5136-4e1d-8e15-a71cad67e9da", + "apim-request-id": "dc5ede28-de7a-4b51-baef-e3fda22dec39", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:28 GMT", + "Date": "Fri, 15 Jan 2021 21:59:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "62" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -148,44 +130,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "75458861a56107e864a9f0cb4c199a06", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4f209b88-672f-4be3-9314-f26bc72ccc84", + "apim-request-id": "8dca947a-4845-45f9-a5f4-776b44d7fe79", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:29 GMT", + "Date": "Fri, 15 Jan 2021 21:59:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "76" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", - "status": "notStarted", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", + "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -195,44 +171,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c4cce67952a059e38711b33f82834b45", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "93eca8f3-aa03-4799-af5d-a9d456355895", + "apim-request-id": "32027f96-a4f6-4761-8acb-5ebc6a3f8859", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:30 GMT", + "Date": "Fri, 15 Jan 2021 21:59:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "61" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "98" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -242,44 +212,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "0182d08f2e68b82daf6c747ca5ef217e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6baf4071-09ec-4293-bb2c-eff51601749e", + "apim-request-id": "318484bb-b67c-48a9-9bd7-49189d9e955d", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:32 GMT", + "Date": "Fri, 15 Jan 2021 21:59: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-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "55" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -289,44 +253,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f31420deabd90f18a4ecee4ff1a985e1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a424b80a-8324-48a7-9f53-80610a5218eb", + "apim-request-id": "d7cc89e3-9c6b-4547-89ea-bdbad808adda", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:33 GMT", + "Date": "Fri, 15 Jan 2021 21:59:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "37" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "49" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -336,44 +294,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "7c3cab5e99974b9db9141433dd67b397", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c8d1eebc-73a1-4331-b739-80755b0de20b", + "apim-request-id": "e61bef50-99d0-4473-9537-1cff8aabbc80", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:34 GMT", + "Date": "Fri, 15 Jan 2021 21:59:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -383,44 +335,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "616034ef576ee36bb7725c7c40ddc605", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2a8f69af-72aa-4aed-ae2c-4b69614221db", + "apim-request-id": "719abc55-e1b4-4618-bafa-30bffd1ccf95", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:35 GMT", + "Date": "Fri, 15 Jan 2021 21:59:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "64" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -430,44 +376,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "fa1e93e7a5b345e782c93ac496e4323d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "89c2e0aa-e6ad-4bc5-8e81-175df649018b", + "apim-request-id": "8596fdae-4457-4f48-b354-fcf14aed2b0d", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:37 GMT", + "Date": "Fri, 15 Jan 2021 21:59:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "60" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -477,44 +417,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "bc5f5738234907723f58c4243c200bdb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2f8e9795-dae7-4b62-adb8-d778720d73fd", + "apim-request-id": "bfb3bc26-051e-4cca-9386-d4e368dadc65", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:38 GMT", + "Date": "Fri, 15 Jan 2021 21:59:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "74" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -524,44 +458,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "494c0e4db9494ae34d1bdea41ca64cd2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9a23fb99-0539-4d6f-8c17-20306abbb671", + "apim-request-id": "709dc6e8-c15c-4688-b116-9324eadb4ea0", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:39 GMT", + "Date": "Fri, 15 Jan 2021 21:59:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "72" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -571,44 +499,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e8441e400a7ec3bc2017ba5be0c20861", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6ec8f65d-6e2d-43cb-ad02-9de0935c4523", + "apim-request-id": "5a0d548b-8b60-4a86-8e66-780c8ffdca6d", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:40 GMT", + "Date": "Fri, 15 Jan 2021 21:59:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "61" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "56" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -618,44 +540,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "88775fbee8987ff473156e2e45cdea98", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "60b758eb-1b7c-4331-9ff7-8cb882511a18", + "apim-request-id": "a5e7bab4-0155-41b1-9dfb-e2cf6634219d", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:41 GMT", + "Date": "Fri, 15 Jan 2021 21:59:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "65" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "38" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -665,44 +581,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "1de4f20b22dc435d52892831fe88698a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7285f8ad-2ea8-4760-b676-cf08f76a9a88", + "apim-request-id": "297f4f96-d417-469a-be08-0cccbfb8a442", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:42 GMT", + "Date": "Fri, 15 Jan 2021 21:59:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "68" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "58" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -712,44 +622,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "bce67c12c42f583a2ac475689b8e7e53", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "92d37b32-f62b-44fe-b972-d3540cf59af4", + "apim-request-id": "8273790c-ee8c-4328-8a13-894156814b62", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:44 GMT", + "Date": "Fri, 15 Jan 2021 21:59:16 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": "68" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -759,44 +663,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ee4f222cebde9c850234350ebfc281ea", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "323c150c-8961-460a-9211-4058cd60bf2e", + "apim-request-id": "ae4117fc-ef16-42c2-8124-02685943a6bb", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:45 GMT", + "Date": "Fri, 15 Jan 2021 21:59:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "59" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "56" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -806,44 +704,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c81ce4ab2de74668b78bf218acf4a7c3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2f862a3e-47ac-4a15-a494-8576f2db2ff6", + "apim-request-id": "131df511-5d98-4940-8808-846afacbbe6c", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:46 GMT", + "Date": "Fri, 15 Jan 2021 21:59:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "60" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "67" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -853,44 +745,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "db05d50a7b3926acf74abafb8f2b9868", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e8dba719-c273-471f-a203-a30174785f1b", + "apim-request-id": "443fb113-01f6-4eb7-9dc2-80c777990620", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:47 GMT", + "Date": "Fri, 15 Jan 2021 21:59:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "55" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -900,44 +786,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b7bd8a43b672fe6bb9083652f86cef0e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "527e0173-f1ec-431a-a8cf-8479388c9ee4", + "apim-request-id": "461e697e-0b8e-4b06-9cff-f74055376eee", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:49 GMT", + "Date": "Fri, 15 Jan 2021 21:59:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "41" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "64" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -947,44 +827,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e903718ca5bc2fb137f5d09d736db78b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4f63c062-9a06-438d-9717-d16d35c19fe1", + "apim-request-id": "e2394a65-0bcc-4375-a503-a1d9fbc74c62", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:50 GMT", + "Date": "Fri, 15 Jan 2021 21:59:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -994,44 +868,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "21d58af3ef3754516a06223045592e8a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e2de4a3c-abfc-4072-b562-32ccffc4ff65", + "apim-request-id": "bb7241f7-f2d6-4d35-baf6-ffec3e176227", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:51 GMT", + "Date": "Fri, 15 Jan 2021 21:59:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "37" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -1041,44 +909,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "1d6fac5aaf289dabd98d7f7de5ce8b4c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "05c85322-437e-4ed3-a777-57c4172db75a", + "apim-request-id": "91601351-a82c-44ca-b7fd-75ea74678cf0", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:52 GMT", + "Date": "Fri, 15 Jan 2021 21:59:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "58" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -1088,44 +950,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "6d5faa51cd979cd620ae7fb58381eadd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "afc70aca-0f1c-4340-91f9-6d0aed4caafc", + "apim-request-id": "4ea3184a-ad4d-48f5-9c4b-68beb39ee3f8", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:53 GMT", + "Date": "Fri, 15 Jan 2021 21:59:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "72" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "54" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -1135,44 +991,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c74245c69afd4363df3748a970d46f9b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cd5f28d5-c60f-4da7-b08d-d1e21638369e", + "apim-request-id": "da3df6a0-99b1-486c-83c2-619a5b941a9c", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:55 GMT", + "Date": "Fri, 15 Jan 2021 21:59:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "60" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -1182,44 +1032,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9aded57bc1fa8df3d5d2fc792ff51a58", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3069e350-b7ae-4a13-a0f2-a572d131cea7", + "apim-request-id": "3e2ca92e-7ae6-49ba-ac95-7c69591798e9", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:56 GMT", + "Date": "Fri, 15 Jan 2021 21:59:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "50" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "61" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -1229,44 +1073,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9fb6a1a2c38cb74e461b8e60852d2c4c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a9d0df44-1950-4191-8b07-74d289585071", + "apim-request-id": "0b27fe0d-e2df-461e-84d8-912822d44b43", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:57 GMT", + "Date": "Fri, 15 Jan 2021 21:59:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "60" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "83" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -1276,44 +1114,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ad3ae33f4fa205e352b5f12b9dea13ea", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1ad3a120-1207-4209-9cf4-d7017457f059", + "apim-request-id": "584c9add-18a3-488a-a643-4854b04a026b", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:58 GMT", + "Date": "Fri, 15 Jan 2021 21:59:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "59" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -1323,44 +1155,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ce06f01cd01db70f872753de339208a8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5bc8c52c-4a66-4d88-8250-f0b2e70cb9c3", + "apim-request-id": "26cab5c8-083d-48f2-a633-9c1a7cee1f09", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:59 GMT", + "Date": "Fri, 15 Jan 2021 21:59:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "57" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -1370,44 +1196,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4c39b0a66dbb52b5beb14cd6d2231a5b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2fc28b15-7a4d-4c24-ab53-973c753fb279", + "apim-request-id": "839353c3-69c6-44bb-9eb8-6b669ce25073", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:00 GMT", + "Date": "Fri, 15 Jan 2021 21:59:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "50" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -1417,44 +1237,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9444a3075d266f2ed382257bfc04d2c0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7b8f7ee5-65ad-43c3-9390-f7510c1ceef7", + "apim-request-id": "b65a5864-3c13-4bd6-8c2a-2db1026e57af", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:01 GMT", + "Date": "Fri, 15 Jan 2021 21:59:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "57" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -1464,44 +1278,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ec8449adc7b1ae2f3bb3106c8338e564", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4984b00c-75c3-47f0-9478-cecaa820f6c1", + "apim-request-id": "ebbe668f-6d0c-467a-b627-a7c858ad86c9", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:03 GMT", + "Date": "Fri, 15 Jan 2021 21:59:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "41" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -1511,44 +1319,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "8fd6f80d734e488181c97838483956b9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3c5a8ef4-01fc-49e3-88eb-43e87693310a", + "apim-request-id": "5c0dcf87-aff5-49c2-9e52-2ef6f372d35d", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:05 GMT", + "Date": "Fri, 15 Jan 2021 21:59:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "62" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "69" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -1558,44 +1360,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "88298cde2d9e40aa749559724dc2eb9b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f46f0ea9-f0f6-468c-8f54-014b7db7cfde", + "apim-request-id": "d7fa4988-cf80-4655-9def-caf662dcfd57", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:06 GMT", + "Date": "Fri, 15 Jan 2021 21:59:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "67" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "61" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -1605,44 +1401,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "046ec19c432d3971c73c6be74ef66601", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "61cd109e-5a8b-4220-80fe-66a1d1cf0cab", + "apim-request-id": "70fce4f6-8b56-43ee-a483-359b6aaced19", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:07 GMT", + "Date": "Fri, 15 Jan 2021 21:59:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "63" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -1652,44 +1442,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f78d565c5d0edfc54d961ab91a0ffbbf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b990bec2-6d47-429e-bc7f-c74110c68a5b", + "apim-request-id": "04726f01-2061-4295-9f1f-b04f57f59d2c", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:08 GMT", + "Date": "Fri, 15 Jan 2021 21:59:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -1699,44 +1483,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "869bddde52cb9b8b1af0c061c2c3f17e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5b13221b-a7cb-4e28-b915-dde384a33ecf", + "apim-request-id": "48c59cb3-412d-42a6-9b8e-3d0efc68fd9c", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:10 GMT", + "Date": "Fri, 15 Jan 2021 21:59:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "63" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -1746,44 +1524,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f615582ef4353f8cfb8eb69728b81fb8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5bd876b7-3889-415b-b5d8-798080d79744", + "apim-request-id": "9b538def-1fde-4866-992d-f8b36ccd2f94", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:11 GMT", + "Date": "Fri, 15 Jan 2021 21:59:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "66" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "65" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -1793,44 +1565,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "7109ac41e05a0a35cbf1dd1e9c631d8a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0be75a25-6de8-45d2-a2bf-27dadbc9e904", + "apim-request-id": "4a85c690-e12f-437f-943b-44fa1d8e4d08", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:12 GMT", + "Date": "Fri, 15 Jan 2021 21:59:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "52" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "49" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -1840,44 +1606,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c18a9ba404f9e989505c8a3c9cf37261", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7dc39ef5-6b1f-4772-af60-0fd8b6ebf0fc", + "apim-request-id": "e47e63c8-2140-45c7-bfa5-2d8f99cb8264", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:13 GMT", + "Date": "Fri, 15 Jan 2021 21:59:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "49" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "61" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -1887,44 +1647,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "162008d080b94e23220b2a44176da397", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a8544a91-a505-4ace-8b6f-368892b1a46e", + "apim-request-id": "aaa8924a-2fb3-4c87-a18c-b24861f11142", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:14 GMT", + "Date": "Fri, 15 Jan 2021 21:59:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "63" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -1934,44 +1688,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "8df32c715d2d3cbf221f20fe55f86dd7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7de70cce-6b5f-4ded-8291-c6f4fcc5ea51", + "apim-request-id": "12238006-db64-49c4-a1c8-6ca4770ed00e", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:16 GMT", + "Date": "Fri, 15 Jan 2021 21:59:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "58" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -1981,44 +1729,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "944d7b7e074324d0783c9fedd945d2e2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3de4733c-8b5f-45f2-a23c-21c724504aa7", + "apim-request-id": "36521151-d51d-4aa4-9674-240b3b4acaa0", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:17 GMT", + "Date": "Fri, 15 Jan 2021 21:59:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -2028,44 +1770,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "70cbf3b8e500723348e3f3995f25f929", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9604439d-d106-4e77-8766-4827286e12a8", + "apim-request-id": "2723cd7b-bfce-45cd-8226-db96bbe820a9", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:18 GMT", + "Date": "Fri, 15 Jan 2021 21:59:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "53" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "65" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -2075,44 +1811,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9bc5539d0f1f6a545bce14f1bed163dd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2d5a8b12-6436-4a66-8ba4-930251dba38a", + "apim-request-id": "f17e0e2b-d3bc-4433-87e4-070b17e12e0f", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:19 GMT", + "Date": "Fri, 15 Jan 2021 21:59:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "78" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -2122,44 +1852,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "62463d4dfd2d98d748db4b5f1336c453", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b5f33b24-02e8-4f49-b169-07be50d7f078", + "apim-request-id": "dc4a68d3-d477-4226-9d74-f5067809ef40", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:20 GMT", + "Date": "Fri, 15 Jan 2021 21:59:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "60" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -2169,44 +1893,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "86507643377fa9c39e611431d142b477", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0527e712-8697-498d-81ba-c204096a31de", + "apim-request-id": "e6ebbe6f-c5a8-496a-a692-6989d698dd32", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:21 GMT", + "Date": "Fri, 15 Jan 2021 21:59:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "55" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "80" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -2216,44 +1934,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "214c168097de9ffc7b2d5244c4f55624", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f5f3c9fd-7e36-4202-b09c-25d5915725e0", + "apim-request-id": "a3470deb-01e2-4a27-a703-8a3d729ca65f", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:23 GMT", + "Date": "Fri, 15 Jan 2021 21:59:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "92" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -2263,44 +1975,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "48aec109dc81165e7a9dc3cbe8a5c706", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eb224321-a155-46f0-acfd-a6210469a509", + "apim-request-id": "42a04b09-38b2-415b-8f3d-34b71384fc74", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:24 GMT", + "Date": "Fri, 15 Jan 2021 21:59:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "79" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "48" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -2310,44 +2016,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "fdded326a3eaab747ab00a52e47ee4a9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "83e9524b-6447-40f2-b6ff-a3aa307591fc", + "apim-request-id": "bb299e02-e9de-43bc-9b4a-0bb8902ba4f6", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:26 GMT", + "Date": "Fri, 15 Jan 2021 21:59:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "62" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -2357,44 +2057,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "0f27f00a6c93a3f5b736a641d330b7d5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "51ea3d5c-aee9-43b9-88a1-f5fb26a65de5", + "apim-request-id": "43e90457-6c7d-427f-84cf-f8d069eecb5e", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:27 GMT", + "Date": "Fri, 15 Jan 2021 22:00:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "51" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -2404,44 +2098,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f01e4c655916663a4d02ced1d10c31fc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7abd6ccc-6dc7-4350-b4e5-56e3c539f278", + "apim-request-id": "449d642a-85e5-41d3-9cfa-ea50d3e96cfc", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:28 GMT", + "Date": "Fri, 15 Jan 2021 22:00:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -2451,44 +2139,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f8c11ab8b87eba72dd3a45b4fc32d849", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7afc91f9-1481-489f-8dba-ceec8658d650", + "apim-request-id": "4f73d7f0-8e67-42b2-866a-6621ca65c8fd", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:29 GMT", + "Date": "Fri, 15 Jan 2021 22:00:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "37" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "67" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -2498,44 +2180,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "98ec34f9f460b192b6c1c2919e24d2ab", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "86741643-71f6-46f1-b33d-5fe358db6ea8", + "apim-request-id": "c967e9b3-fbd5-4c03-8822-871063421a12", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:30 GMT", + "Date": "Fri, 15 Jan 2021 22:00:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "41" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -2545,44 +2221,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b889aa04be6ead57d96312db1385691a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2bc4b994-5feb-4bc3-996b-8425a9e72ef4", + "apim-request-id": "9b8aeef3-58a1-4be7-ac13-e77fd485f695", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:31 GMT", + "Date": "Fri, 15 Jan 2021 22:00:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "61" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -2592,44 +2262,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9dd88429991fc49b870f42bdf5e11bb9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ec8320e8-7b91-492e-a83a-5b18daafe113", + "apim-request-id": "51a79808-b0f2-4078-ba9d-733b20ecc28e", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:32 GMT", + "Date": "Fri, 15 Jan 2021 22:00:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "61" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "66" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -2639,44 +2303,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "52af9a681fa93adadd3fbefce1b79d30", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8d6ca775-22f3-42af-886a-11c5fab4e042", + "apim-request-id": "5ddf9047-a699-4527-b985-fc6ec055e22d", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:34 GMT", + "Date": "Fri, 15 Jan 2021 22:00:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -2686,44 +2344,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "1a67a757344c6b8b0ec5315f7b9ab7f7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3f3c5785-b652-4273-a921-8f5dca56fccc", + "apim-request-id": "f9d047c9-de33-425a-a950-91e4cd200a61", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:35 GMT", + "Date": "Fri, 15 Jan 2021 22:00:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "77" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -2733,44 +2385,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "7972594717d60a71a99dbfdfda9fe2d0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "39ecd4eb-d2e4-4f85-aeba-5b4f07a673d8", + "apim-request-id": "b986580c-a505-4649-8219-5b56b78a672a", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:36 GMT", + "Date": "Fri, 15 Jan 2021 22:00:09 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": "48" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -2780,44 +2426,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4e651271017a346c0e4444e3ee7bbf42", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6dcd2ff1-29fa-47df-9432-47969ed954ef", + "apim-request-id": "f5e1a2b2-bd6b-46f7-9f06-036fc10a9755", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:38 GMT", + "Date": "Fri, 15 Jan 2021 22:00:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "57" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -2827,44 +2467,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "87b4c6882444405a365d71ae74ac906f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2d985b88-6bad-482a-a73b-f4952b67a47c", + "apim-request-id": "85dc6f32-5938-4e0f-8861-26a482da77c6", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:39 GMT", + "Date": "Fri, 15 Jan 2021 22:00:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "61" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -2874,44 +2508,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "69ed61e26934467dec3e6a91d38d1b2d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "272cc5a3-4ddc-4f29-8468-a073b30c7c49", + "apim-request-id": "84536f40-4832-476d-a2e5-7d4498ab565c", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:40 GMT", + "Date": "Fri, 15 Jan 2021 22:00:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "48" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "52" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -2921,44 +2549,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "14567dde5bea4d8bb825171d90bebf62", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "84a1c57f-aab7-458d-a70f-61a97eb56527", + "apim-request-id": "bc0f9457-40a2-40ca-bd46-29b0a90e278f", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:41 GMT", + "Date": "Fri, 15 Jan 2021 22:00:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -2968,44 +2590,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "8d01d5b4558e1f0e496e9a06b9c86da8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e428bbb2-7d26-4ee3-a7bd-bbf1a6ad0df9", + "apim-request-id": "3c23c701-f38b-4e99-b0ff-165045415ad0", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:42 GMT", + "Date": "Fri, 15 Jan 2021 22:00:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "62" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -3015,44 +2631,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f7d043417c558784d5a0b10f5160b52e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e90efea6-f3af-4080-9cb2-207ad3674be3", + "apim-request-id": "70156de8-bde8-4992-961a-084eb5b80e06", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:43 GMT", + "Date": "Fri, 15 Jan 2021 22:00:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "55" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "48" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -3062,44 +2672,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "fedd087f8e8c889f6f37cb7cc08593ef", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "65c9d4d7-fc92-4546-aece-2bf72e6d79d5", + "apim-request-id": "b2f02653-eae0-4973-b017-7ff40d1e61c5", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:45 GMT", + "Date": "Fri, 15 Jan 2021 22:00:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "50" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -3109,44 +2713,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4cdb6eb7c7ee380c5079b7eea4fecee8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fb13832c-59a3-42f9-94fb-c422126cc9be", + "apim-request-id": "7e9f1932-e763-41f5-9c87-bca18c506c03", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:47 GMT", + "Date": "Fri, 15 Jan 2021 22:00:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -3156,44 +2754,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b1866cb86feab31ca447881eb008c650", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f062276d-e6fc-4aa4-b206-58d5acc2649c", + "apim-request-id": "7161ab28-d041-4cf8-92f1-ef91f3acd1cc", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:48 GMT", + "Date": "Fri, 15 Jan 2021 22:00:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -3203,44 +2795,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e257c10c6985b840fca5ad12d6b0e470", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "54c8e76a-c201-437c-b7da-5308930b31eb", + "apim-request-id": "a176cef7-2f36-42df-ba4a-1e3686c8119e", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:49 GMT", + "Date": "Fri, 15 Jan 2021 22:00:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "50" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "63" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -3250,44 +2836,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "54c3e269e2fe48045228a7a63eee8748", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8f8ac216-0bd2-46b0-b7c2-e4c6bbe7c87c", + "apim-request-id": "0e646575-81f2-4c61-8ec1-c699af636e83", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:50 GMT", + "Date": "Fri, 15 Jan 2021 22:00:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "60" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -3297,44 +2877,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e2e167b2eba74f632bceb445c109ddf3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6dfce86b-454c-4737-bd21-c44240b9a9a8", + "apim-request-id": "2483dd87-d274-4fae-a9cb-04171aaf7d1c", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:51 GMT", + "Date": "Fri, 15 Jan 2021 22:00:24 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": "60" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -3344,44 +2918,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ceb4186272442a51bd0e905dc199790d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a9f5d2bb-4ede-4726-8a22-85d976d47106", + "apim-request-id": "a04da1c7-49f6-48ee-b0cd-13c6c10dc8f7", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:52 GMT", + "Date": "Fri, 15 Jan 2021 22:00:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "56" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "48" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -3391,44 +2959,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "6e5f651e02cf7dc97f7328302dbf8648", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3a983fa7-6ff8-4136-a028-b5b28df643ba", + "apim-request-id": "9ba3236e-3f74-4bf9-9f0b-bd125a6ff69e", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:53 GMT", + "Date": "Fri, 15 Jan 2021 22:00:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "52" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "60" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -3438,44 +3000,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "2644b34ab839400316b625985b068e92", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a8961fcc-4b57-4396-85e8-747a50bdaa98", + "apim-request-id": "f9001ab0-efd6-499b-9c33-e5508b2269b4", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:54 GMT", + "Date": "Fri, 15 Jan 2021 22:00:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "64" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -3485,44 +3041,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "5c26a7556ea95f244f374ed14921fcfd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "94d2360c-3d31-410b-83ed-43e762cfc5bb", + "apim-request-id": "40eba3ea-15f0-4e28-abe8-8dd095237aed", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:56 GMT", + "Date": "Fri, 15 Jan 2021 22:00:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "41" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "64" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -3532,44 +3082,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "0d124788525465d3611f5718dd312279", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "52d30bc8-3282-4cf7-be89-d2883f6e0513", + "apim-request-id": "5c369fe7-8d5e-48a2-9cf4-bbea7ab1e460", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:58 GMT", + "Date": "Fri, 15 Jan 2021 22:00:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "64" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -3579,44 +3123,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "86da96e52998dc9e8fe5d7026a32f6f5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "63941b60-0d97-4af4-8f80-d1379106dee9", + "apim-request-id": "a0a27efd-59f7-4600-a205-a3397805273e", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:13:59 GMT", + "Date": "Fri, 15 Jan 2021 22:00:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "50" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -3626,44 +3164,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "131027b980f3023dd3c1fb8a160b811d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ec13a971-2a9a-4c25-9316-8f7d079a5adb", + "apim-request-id": "bb778af3-3cc5-4c7a-8127-09df808db281", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:00 GMT", + "Date": "Fri, 15 Jan 2021 22:00:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "37" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "59" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -3673,44 +3205,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b2ebd51576465e64a9367d6f7bd1fa2f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cbbb02af-636a-42ec-88c7-3017041f0511", + "apim-request-id": "5eaf4520-f5c2-41ea-b2d2-a1a59cf7e5c2", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:01 GMT", + "Date": "Fri, 15 Jan 2021 22:00:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "57" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "59" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -3720,44 +3246,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b55f62280e21658559d8b2d72e13c584", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e727c612-6632-42f5-88d9-d7f3e22a1910", + "apim-request-id": "03c351bf-2e95-4d32-ab80-8c69f8e75909", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:03 GMT", + "Date": "Fri, 15 Jan 2021 22:00:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "72" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -3767,44 +3287,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "95edb963434743afc2b16abd02ce8701", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c22327b6-9a68-44fd-bfc8-0fc7826ce0c8", + "apim-request-id": "afa246c9-55d3-4a81-ae91-8cedefc719a7", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:04 GMT", + "Date": "Fri, 15 Jan 2021 22:00:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "62" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -3814,44 +3328,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b461ccc6cbac06fc4f86596ec38d2f95", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "31f7ff3b-7ff5-4744-8ce2-5f2f51f4946d", + "apim-request-id": "e8eb3178-bf23-4a7c-8d31-7b41d223a32b", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:05 GMT", + "Date": "Fri, 15 Jan 2021 22:00:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -3861,44 +3369,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c10bf97065e4e4e8b31bf36fa3c7628b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "47386e77-30af-44b1-b9cb-ae3bb5b5cbf0", + "apim-request-id": "25fc8e3d-d581-4e6d-974c-634f967f2a23", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:06 GMT", + "Date": "Fri, 15 Jan 2021 22:00:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "67" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "54" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -3908,44 +3410,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "6210b15010b298d8bce645c0ea417f35", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1ef42982-9c05-4713-859b-c14f6a781e66", + "apim-request-id": "504728c7-1ad3-4a02-bb0d-c87eefe94967", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:07 GMT", + "Date": "Fri, 15 Jan 2021 22:00:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -3955,44 +3451,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "094dd581c5c2601de47d0090d88d6287", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fdf7db27-8e1b-41cd-8f17-7c2c7108eb9b", + "apim-request-id": "4acec6fa-6a8c-43b3-b082-0938f0f59125", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:08 GMT", + "Date": "Fri, 15 Jan 2021 22:00:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "56" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -4002,44 +3492,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "121dce24cd7c5fe3207304fe1f27fa72", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1674f9dd-e1ff-4210-8a88-b78f4da55d0c", + "apim-request-id": "f6f8ef3e-1d98-48ac-8452-11f6bb23ea75", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:10 GMT", + "Date": "Fri, 15 Jan 2021 22:00:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "67" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -4049,44 +3533,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ceedbd9c587a8ac893af7e341048bf2f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "aa30b827-97fc-49f6-9fa0-7a15fc8b946e", + "apim-request-id": "521ce84d-7805-4bbc-9d0e-9102ad9640f5", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:11 GMT", + "Date": "Fri, 15 Jan 2021 22:00:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -4096,44 +3574,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "1c9cbe836c23b4b8f2ede94fc01e41bc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3a88e579-51a7-4aaf-b76e-d7e7f87b00ef", + "apim-request-id": "77bbdb83-8a07-4608-a881-2205f6a1d153", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:12 GMT", + "Date": "Fri, 15 Jan 2021 22:00:44 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": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -4143,44 +3615,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "1bf38e8394a0cb0d05927ecc4fae4fd8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e6ac8112-acc6-41fb-a817-08429e5795e1", + "apim-request-id": "20095fac-da6c-4b2b-a2d8-d0f0982b8b5e", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:13 GMT", + "Date": "Fri, 15 Jan 2021 22:00:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "58" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "64" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -4190,44 +3656,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "617ad5b3dd8a304e0439db8d6f78ca75", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "aabbb934-7664-4cf3-95b1-199e9ea8f7dd", + "apim-request-id": "b7b66eac-833d-47d3-bb50-9e8f98af81df", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:14 GMT", + "Date": "Fri, 15 Jan 2021 22:00:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "59" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -4237,44 +3697,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "81b1c16ea454ee8fb1d01691edeb6544", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "64222389-3075-499e-a1ef-99bdc8585ec0", + "apim-request-id": "9384cf57-397f-460a-a427-7f12a1b31896", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:15 GMT", + "Date": "Fri, 15 Jan 2021 22:00:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -4284,44 +3738,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "eb9b109ddfa4a5313fc31666b87f5c8c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "11dafcdd-086a-4e3e-bef7-5232130572d9", + "apim-request-id": "9dd72d47-6203-4c54-a1da-6a22840c9ef5", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:17 GMT", + "Date": "Fri, 15 Jan 2021 22:00: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-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "74" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -4331,44 +3779,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "8d5d09c8cefc0f84468bb0b9c6bd4219", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b826b277-28dd-4c23-8f04-a9432e8dbf2c", + "apim-request-id": "f6725d34-f781-466e-bf8c-e5a5e7da85c6", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:19 GMT", + "Date": "Fri, 15 Jan 2021 22:00:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "87" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -4378,44 +3820,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "5eef97d4dedc8fd08f0c41918e283631", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "71971244-a357-4a88-9895-d63a5a5ace25", + "apim-request-id": "1ceef327-cde9-4244-903e-f934d2d71ab0", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:20 GMT", + "Date": "Fri, 15 Jan 2021 22:00:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "68" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "49" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -4425,44 +3861,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e3c98974d78dcf478c8ca4182e77de82", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "91b0053b-310a-4521-b31b-710f61517335", + "apim-request-id": "69f65145-1628-4f78-828a-0ec313e465ed", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:21 GMT", + "Date": "Fri, 15 Jan 2021 22:00:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -4472,44 +3902,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "2092fc80fd8fe9b038cefdf08cf2811e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6ec5d7fc-6fc3-43de-a998-42518b788bcf", + "apim-request-id": "4542c684-1b08-4b14-b4a9-e9404efd63a5", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:22 GMT", + "Date": "Fri, 15 Jan 2021 22:00:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "76" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -4519,44 +3943,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "3d457f555ef3fc8b5020d2503ab86018", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1b358508-1ef9-4b2d-953e-45724df8457f", + "apim-request-id": "84817796-f1ab-4dc8-ae25-ee708af99f48", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:23 GMT", + "Date": "Fri, 15 Jan 2021 22:00:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "41" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -4566,44 +3984,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9110bf2d159576a1d9dfabbfda574399", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "db5a47eb-eaea-412b-9ca1-d72bef7c41a6", + "apim-request-id": "cc79b6a9-919f-412e-b207-cb52ae779f47", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:24 GMT", + "Date": "Fri, 15 Jan 2021 22:00:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -4613,44 +4025,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "afc3850aa132228e7196d06f2b5fae80", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1a91f652-a9e9-4bc9-9000-b8acac8aad05", + "apim-request-id": "e75fe267-9dff-4a1c-9d5d-6a43a9a6d561", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:25 GMT", + "Date": "Fri, 15 Jan 2021 22:00:58 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": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -4660,44 +4066,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ccc2e56ef0e23f88ddcf6313b3cc22f9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1e634c6b-ebea-4d57-a476-c5432d97901e", + "apim-request-id": "a1df6a95-d03a-4727-9b18-c1d27260af6c", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:27 GMT", + "Date": "Fri, 15 Jan 2021 22:01:00 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": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -4707,44 +4107,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b54638ddb0f58ce530ee1fff45324b7a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f777db6b-e29a-44c5-91fc-8bba8bdc0917", + "apim-request-id": "68a57413-3c16-4f52-982d-1f2e1479472d", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:28 GMT", + "Date": "Fri, 15 Jan 2021 22:01:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "63" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -4754,44 +4148,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f4512a3176941ab7fc83d2633e7a6ea5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "284bde0d-7ac8-4f4a-b04f-e1dceaeccb2d", + "apim-request-id": "01b89daf-f928-4313-bbce-c8221c7cf570", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:29 GMT", + "Date": "Fri, 15 Jan 2021 22:01:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "71" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -4801,44 +4189,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f292d774f919bd8bff369cf3d089f9ab", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "73d8fc12-7ae1-44ec-9288-d7bd67f3c121", + "apim-request-id": "abcc1548-d904-481d-8f5f-f99b656da7b2", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:30 GMT", + "Date": "Fri, 15 Jan 2021 22:01:03 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": "68" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 0, "failed": 0, @@ -4848,185 +4230,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "88e2e8842d7b6665812bb871de824db6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "585dc260-f727-4864-b002-cf404f562240", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:32 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "47" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "6e8b797f589f37619f93f55ddac34973", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1464e642-8b13-4db6-9250-f23b67b4003c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:33 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "55de2689e598462a712b71ed4119de7c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e7f4e2c5-cd30-4e99-84f7-b7870a34582e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:34 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "56" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "5673e6e88bfe2b0b87aae9e738078cbd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1fbba36b-6e57-41df-b2f9-54977c2bfd66", + "apim-request-id": "dc546ab3-8284-4b91-8ed1-a4c2918b1db1", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:36 GMT", + "Date": "Fri, 15 Jan 2021 22:01:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "106" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "197" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "92f653e7-7199-4d06-814b-a184e170f6f6_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:12:27Z", - "createdDateTime": "2020-11-17T20:12:26Z", - "expirationDateTime": "2020-11-18T20:12:26Z", + "jobId": "eea48c02-88c1-49b3-8a26-d920dc385f6d_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:59:00Z", + "createdDateTime": "2021-01-15T21:58:59Z", + "expirationDateTime": "2021-01-16T21:58:59Z", "status": "succeeded", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27Z" + "lastUpdateDateTime": "2021-01-15T21:59:00Z" }, "completed": 1, "failed": 0, @@ -5035,7 +4270,7 @@ "entityRecognitionPiiTasks": [ { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-17T20:12:27.3276603Z", + "lastUpdateDateTime": "2021-01-15T21:59:00.1309653Z", "results": { "inTerminalState": true, "documents": [ @@ -5073,6 +4308,6 @@ "Variables": { "RandomSeed": "1544755028", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://ta-s-westeurope.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasks.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasks.json index 4e5843e8491c9..1a0ea9d0a0f9e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasks.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasks.json @@ -1,21 +1,14 @@ { "Entries": [ { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Content-Length": "478", + "Accept": "application/json, text/json", + "Content-Length": "546", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ac1679fa34090a43bd6bc15ec6a436ac-fb42f7ea732e4849-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "36d74cae0543ad22b4752e104a677574", "x-ms-return-client-request-id": "true" }, @@ -38,14 +31,16 @@ "entityRecognitionTasks": [ { "parameters": { - "model-version": "latest" + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" } } ], "entityRecognitionPiiTasks": [ { "parameters": { - "model-version": "latest" + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" } } ], @@ -61,55 +56,49 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "87225829-ab6a-4b9d-9441-a01b70800c37", - "Date": "Tue, 17 Nov 2020 20:10:14 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", + "apim-request-id": "d0750bd8-671a-42cc-bf3b-5e29ce0c4bb3", + "Date": "Fri, 15 Jan 2021 21:51:30 GMT", + "operation-location": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "426" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "360f939000899016ea2d36ca05142466", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e1873832-b534-42e4-9149-aed4ad0be7da", + "apim-request-id": "9fa7c565-b224-4d16-9d61-a136cd3f3ee1", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:15 GMT", + "Date": "Fri, 15 Jan 2021 21:51:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "128" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:15Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:30Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:15Z" + "lastUpdateDateTime": "2021-01-15T21:51:30Z" }, "completed": 0, "failed": 0, @@ -119,44 +108,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "32033b4d84a2f3a2ac913141d710299b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "53b18fe6-952f-48a8-947b-a700bbc69ef3", + "apim-request-id": "6235e0c3-28aa-4a4b-98aa-1bbafbc214ff", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:17 GMT", + "Date": "Fri, 15 Jan 2021 21:51:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "109" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "430" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 0, "failed": 0, @@ -166,91 +149,110 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f287b823979aae6e35464c16cf57a89f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "55631537-96e1-43e4-b70a-95ffaacd0ac1", + "apim-request-id": "519ed302-5c0a-44fe-adf9-9dd80c1e1885", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:18 GMT", + "Date": "Fri, 15 Jan 2021 21:51:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "110" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "482" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, - "completed": 0, + "completed": 1, "failed": 0, - "inProgress": 3, - "total": 3 + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] } } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "0fc2c75142640bd1f11c89f7cfd5b8da", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1d30b13e-bc66-44b2-90a2-a96fa3160de7", + "apim-request-id": "ccf52733-5680-4024-ab6d-f0d18b9562d8", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:19 GMT", + "Date": "Fri, 15 Jan 2021 21:51:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "109" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "292" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -259,7 +261,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -291,44 +293,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4da79a03318db6cbcc54fd5b388b2454", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5a1c1597-dd0f-4a1a-9ab9-9908d200b5c7", + "apim-request-id": "ac63e78f-0038-4010-9c60-e3f03a2d4968", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:20 GMT", + "Date": "Fri, 15 Jan 2021 21:51:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "137" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "377" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -337,7 +333,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -369,44 +365,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "10ef92e91a4de036e67c017e0d76df5f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "905e558a-8339-492c-b359-5efbe2533db2", + "apim-request-id": "512fae73-9bcf-4575-adfe-503504f9e455", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:21 GMT", + "Date": "Fri, 15 Jan 2021 21:51:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "154" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "173" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -415,7 +405,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -447,44 +437,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "3412728d5bb02012fb0c420f4575d365", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b77bfe38-3dd2-46f9-a163-558ce6eac2db", + "apim-request-id": "3cb54e5c-a7a1-4c87-9c1b-e4f7a2c4741c", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:22 GMT", + "Date": "Fri, 15 Jan 2021 21:51:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "179" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "134" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -493,7 +477,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -525,44 +509,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "3d0e35f7a8e5e98c63c76610304da856", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1fcca996-dec5-4e36-a541-e8135d2e88ed", + "apim-request-id": "41cfc40b-e39d-4cea-88f8-3f653c78b2e4", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:25 GMT", + "Date": "Fri, 15 Jan 2021 21:51:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "115" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "252" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -571,7 +549,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -603,44 +581,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c5cd9d75ef798da47fcf1441d8269b70", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3311eb59-7c46-4e1b-b84c-b76820e1bd21", + "apim-request-id": "e7203f44-c043-48a8-92e8-6afe5c413f66", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:26 GMT", + "Date": "Fri, 15 Jan 2021 21:51:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "195" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "269" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -649,7 +621,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -681,44 +653,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d8869ca8a267e579e629d0e8f401f0ae", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4c16ca89-5640-42c9-abcf-4d47d16f2868", + "apim-request-id": "554725f5-3021-4531-8824-bd8cebea170a", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:27 GMT", + "Date": "Fri, 15 Jan 2021 21:51:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "133" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "137" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -727,7 +693,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -759,44 +725,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "a79aeb630da808eb9080bd16944a103c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d7db2eec-7fc7-424f-aa3a-8b45d06cc4d9", + "apim-request-id": "9a8220cb-8e24-42e2-a54e-4737d8da45d1", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:29 GMT", + "Date": "Fri, 15 Jan 2021 21:51:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "243" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "161" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -805,7 +765,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -837,44 +797,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9368f62bd0c6d3ee23e8df501fbb997e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0c2b3356-4d94-4d53-94c2-abedd91268d0", + "apim-request-id": "30bdbac8-57c0-4ec6-bb42-553cf7d8e60e", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:30 GMT", + "Date": "Fri, 15 Jan 2021 21:51:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "192" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "144" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -883,7 +837,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -915,44 +869,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ecde66dff38c9bc8b17e47e7e563509b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dd0f138b-a08b-4dc4-94c9-7941229ba8f6", + "apim-request-id": "477f8946-38db-4202-b119-b9c090084a8b", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:31 GMT", + "Date": "Fri, 15 Jan 2021 21:51:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "122" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "170" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -961,7 +909,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -993,44 +941,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "febd93185c9993e7fdc784bf2d9ae8d4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b64d7c65-87aa-4455-b772-2d274346c56c", + "apim-request-id": "08ff7eb0-3b03-4d5b-8273-198a560ff70e", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:32 GMT", + "Date": "Fri, 15 Jan 2021 21:51:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "122" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "239" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -1039,7 +981,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -1071,44 +1013,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "2e363ee7236b38b02ecce2488807edc0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c04da1ac-6902-4028-bf4e-e63e878c1822", + "apim-request-id": "2046d111-4635-4c51-8100-d69f7a603ea1", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:34 GMT", + "Date": "Fri, 15 Jan 2021 21:51:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "141" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "137" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -1117,7 +1053,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -1149,44 +1085,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "8b3844989bfe83e57f4befc46f086d16", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "185b0788-da27-4504-8608-20af484fcee2", + "apim-request-id": "d72b1592-4483-406b-b24a-addc3d223eb1", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:35 GMT", + "Date": "Fri, 15 Jan 2021 21:51:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "150" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "126" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -1195,7 +1125,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -1227,44 +1157,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "a6ff7395222cf430e384cfcc7a9e0af5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "613410ae-cf03-40c0-8c65-16defd68145f", + "apim-request-id": "802a09a8-11aa-4844-a812-70ab84ef6cc8", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:36 GMT", + "Date": "Fri, 15 Jan 2021 21:51:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "309" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "215" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -1273,7 +1197,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -1305,44 +1229,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e927c4d95d624cd658b3af2033ebc925", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "40727497-5a22-4bba-8f97-745b7e8f3d0b", + "apim-request-id": "96e5986b-cc18-400f-b2a0-9de014df1f51", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:38 GMT", + "Date": "Fri, 15 Jan 2021 21:51:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "147" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "210" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -1351,7 +1269,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -1383,44 +1301,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "15b2cc5e470775931443a779cb1908e0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e3b30927-8ec6-4f77-b6c4-5bc0810e38d7", + "apim-request-id": "cd1177c8-0610-495d-b002-516c13353808", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:39 GMT", + "Date": "Fri, 15 Jan 2021 21:51:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "129" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "136" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -1429,7 +1341,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -1461,44 +1373,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "aaeaf94084e038b39db34d79720fc1f7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7a90ea0d-caa9-4ce3-b991-6272cc7912b0", + "apim-request-id": "62497d35-8c62-4365-89df-69f7e8c28aa5", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:40 GMT", + "Date": "Fri, 15 Jan 2021 21:51:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "159" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "140" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -1507,7 +1413,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -1539,44 +1445,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ae6daabbf5eb92ee30b1d51fb55c813f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cc35363d-2b3e-4d4d-ba73-4427dd6eda31", + "apim-request-id": "1c6773ed-91f4-40d9-b15d-f676cec5fbef", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:41 GMT", + "Date": "Fri, 15 Jan 2021 21:51:58 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": "152" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -1585,7 +1485,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -1617,44 +1517,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "3adfceaa1e00da44187a7854f91a0204", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1cffdc6e-e696-49c2-9205-c0406f16dba9", + "apim-request-id": "0a7c1a77-508f-4722-8b97-06d2199bdc5d", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:43 GMT", + "Date": "Fri, 15 Jan 2021 21:51:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "136" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "207" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -1663,7 +1557,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -1695,44 +1589,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "20beb0825aab4af40b58792fae948240", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bbc7805f-f0c2-428f-b9e5-fee884e0bfae", + "apim-request-id": "1b91485e-e79a-474b-ac2e-4ba175a531a9", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:45 GMT", + "Date": "Fri, 15 Jan 2021 21:52:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "284" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "215" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -1741,7 +1629,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -1773,44 +1661,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "a3ce0e3286309cf6659295717d9a9916", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "42545764-e222-4803-9da9-92387a005589", + "apim-request-id": "6204a041-47e1-4f79-8a33-adf40cfade46", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:46 GMT", + "Date": "Fri, 15 Jan 2021 21:52:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "168" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "133" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -1819,7 +1701,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -1851,44 +1733,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "059dd1ae609d4f93da942ea8a4152b84", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "30ae6cdf-180c-4df3-beff-70ceb7920479", + "apim-request-id": "e1fed429-259f-456e-bfc6-d00106db2b10", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:48 GMT", + "Date": "Fri, 15 Jan 2021 21:52:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "117" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "131" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -1897,7 +1773,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -1929,44 +1805,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ea2137f85e4bfbd4b922bb18c583cc71", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4e3786f3-8ba5-4972-a04d-309c52d9f926", + "apim-request-id": "829c2dd0-88f1-469c-9d16-75fa3b73d6e0", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:49 GMT", + "Date": "Fri, 15 Jan 2021 21:52:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "139" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "180" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -1975,7 +1845,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -2007,44 +1877,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "dd8063bf7df6d2a37a7ec99b584ef74f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6120ca9d-9fe1-4268-9481-912b324287a6", + "apim-request-id": "fd33bcd5-a785-45f6-935a-217868030138", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:50 GMT", + "Date": "Fri, 15 Jan 2021 21:52:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "133" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "171" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -2053,7 +1917,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -2085,44 +1949,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "46791167ae784fcafca14b7ba47b8a57", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d18c9b4d-fa40-46af-b235-c4f33b2b496e", + "apim-request-id": "f14deace-258f-470e-a841-cb335b7d793a", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:51 GMT", + "Date": "Fri, 15 Jan 2021 21:52:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "165" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "152" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -2131,7 +1989,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -2163,44 +2021,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "41e9bdc74d957a8d934f70cd9539a36b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cb871710-0615-4d47-abaf-d80d6ad25d31", + "apim-request-id": "baff8291-a104-4692-99cd-897d2e85de8a", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:52 GMT", + "Date": "Fri, 15 Jan 2021 21:52:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "154" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "149" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -2209,7 +2061,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -2241,44 +2093,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b3b16b2a860a10f99830e15432272dff", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f744c926-d5fc-4ad4-9fb5-57318230ce44", + "apim-request-id": "19a7f98f-5fea-4ce5-853a-6082d5760731", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:53 GMT", + "Date": "Fri, 15 Jan 2021 21:52:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "199" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "144" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -2287,7 +2133,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -2319,44 +2165,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9ad372f3b66519ba84feb2283dfdbac3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2f685adb-fbd4-484d-8a9d-db20ba961988", + "apim-request-id": "d701d21d-d1ae-4972-8be5-6f1b6b2cab07", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:56 GMT", + "Date": "Fri, 15 Jan 2021 21:52:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "118" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "216" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -2365,7 +2205,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -2397,44 +2237,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "3851dffed7c9414cc4d8a9646c38486b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1a842883-f89a-4f35-95ab-d46a2950a803", + "apim-request-id": "37d240e1-b448-4ea7-a57d-45c3c1cea71f", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:57 GMT", + "Date": "Fri, 15 Jan 2021 21:52:13 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": "178" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -2443,7 +2277,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -2475,44 +2309,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "22d9702208667306b1982f0bd3d1d29a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3d19f15c-56ec-4890-b239-4b5470f76051", + "apim-request-id": "397a14d9-e254-40ba-b625-fb758cceae5a", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:58 GMT", + "Date": "Fri, 15 Jan 2021 21:52:14 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": "143" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -2521,7 +2349,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -2553,44 +2381,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "52561d75f4d61c352591d68d0d55ac4c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2dcc0d74-842e-42d8-9e27-17f09a503ff8", + "apim-request-id": "58c49c05-c301-4932-8f6d-bee53a0e732c", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:10:59 GMT", + "Date": "Fri, 15 Jan 2021 21:52:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "184" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "158" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -2599,7 +2421,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -2631,44 +2453,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "cd0546b59724f55dd9dd8731a7416df3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c2ef822c-b438-4886-a51e-e084a9d1f21b", + "apim-request-id": "f61053e1-a82c-4ae9-9ce6-75b0a04ba1b6", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:00 GMT", + "Date": "Fri, 15 Jan 2021 21:52:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "157" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "174" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -2677,7 +2493,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -2709,44 +2525,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4fee0e05f6e12d953abcfdd43278665b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "af55613c-6483-42b1-93c2-8b976b8dfb67", + "apim-request-id": "fa6932a9-9847-406b-a7e0-71e988f623f3", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:02 GMT", + "Date": "Fri, 15 Jan 2021 21:52:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "191" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "126" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -2755,7 +2565,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -2787,44 +2597,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "8c55e2eb05cbde76c06078f86c0475e4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3273d47e-6d8e-47d4-b12b-c01b562a6f7c", + "apim-request-id": "040df55c-863b-4245-84c4-3b580883534a", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:03 GMT", + "Date": "Fri, 15 Jan 2021 21:52:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "214" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "234" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -2833,7 +2637,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -2865,44 +2669,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ff87e3235d67bf6ab1d892679a88c360", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "39dd49cc-0d35-4d3a-bbda-62d75775bc80", + "apim-request-id": "b1e0689a-3d23-453b-a0d9-076e2a68050e", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:04 GMT", + "Date": "Fri, 15 Jan 2021 21:52:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "120" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "134" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -2911,7 +2709,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -2943,44 +2741,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c4462c77e1ebff2897108e817d9cc036", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8de1be57-6ac6-4e16-a092-7d329f0ec4b0", + "apim-request-id": "1628065c-56fb-4586-ab3c-b78c02c79dda", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:05 GMT", + "Date": "Fri, 15 Jan 2021 21:52:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "117" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "126" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -2989,7 +2781,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -3021,44 +2813,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4eb1184767f18df47896dbf2730f4437", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7160ab46-9192-4c4d-9cb0-ad4ea3ef47a2", + "apim-request-id": "a849f92b-230c-42a2-b0cb-aa57b0274b76", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:07 GMT", + "Date": "Fri, 15 Jan 2021 21:52:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "127" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "144" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -3067,7 +2853,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -3099,44 +2885,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4081179cb0be42f9bb886756cfe84114", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "28a68cd9-5c8e-480a-babe-ef558520db6a", + "apim-request-id": "c6f1ecf4-2ddb-48c6-9cf4-d92f5f726654", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:08 GMT", + "Date": "Fri, 15 Jan 2021 21:52:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "201" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "159" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -3145,7 +2925,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -3177,44 +2957,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "81205b1774d7106f38b84c5505358b88", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8fa64c35-dff7-4edc-a422-455ed7ae5ba9", + "apim-request-id": "3cf4a843-4bc8-43a9-a509-4e93076e6dd7", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:10 GMT", + "Date": "Fri, 15 Jan 2021 21:52:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "165" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "130" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -3223,7 +2997,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -3255,44 +3029,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "66e556cc801b97781f6e9368ff9dbe90", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f182366e-cdfa-47fc-b33a-f07575b0b91f", + "apim-request-id": "cc91d8db-0443-4c4e-9333-40e83c0700f4", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:11 GMT", + "Date": "Fri, 15 Jan 2021 21:52:27 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": "117" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -3301,7 +3069,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -3333,44 +3101,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "17dbc754c2ee2760a770070563a43d85", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7beffcb4-69c9-4a01-b64b-3bc88f2370be", + "apim-request-id": "466a28f0-c61e-48b1-8ff9-00728a30e868", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:13 GMT", + "Date": "Fri, 15 Jan 2021 21:52:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "143" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "219" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -3379,7 +3141,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -3411,44 +3173,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "788adefcdb0397f8e3886169e107109b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7542b8a4-14f0-4a68-9762-0804e7c320aa", + "apim-request-id": "43f66071-739c-4eae-8b3b-635f07cba63d", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:14 GMT", + "Date": "Fri, 15 Jan 2021 21:52:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "139" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "192" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -3457,7 +3213,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -3489,44 +3245,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "3e00bcfa73590999f6bdbeab7872337b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2b33afde-8f27-49e4-9ebc-2dfd2c68f49a", + "apim-request-id": "7a9afcbf-c5c6-4053-8f25-fdc473accd3c", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:15 GMT", + "Date": "Fri, 15 Jan 2021 21:52:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "128" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "142" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -3535,7 +3285,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -3567,44 +3317,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "206b0d314612788cce44346561f646a0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f4802d53-67b5-4d4c-99a8-68d983de3ddf", + "apim-request-id": "b0c6dd3e-5839-41db-9d1d-8070e8671ffe", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:16 GMT", + "Date": "Fri, 15 Jan 2021 21:52:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "157" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "195" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -3613,7 +3357,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -3645,44 +3389,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "a70a6c5ffea3892b458081461d4d1e71", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "754d7056-059f-4656-beb9-40be92c89c80", + "apim-request-id": "fef8b77e-92b4-45e6-976c-c7e97eefb2e0", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:18 GMT", + "Date": "Fri, 15 Jan 2021 21:52:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "176" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "165" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -3691,7 +3429,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -3723,44 +3461,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d337e555ef9bb4882f8770153f33a8ff", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7f4845f0-af09-49f1-b0a6-312c0c9db42a", + "apim-request-id": "33500515-ec9c-4bc0-8ae8-2820ef382a45", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:19 GMT", + "Date": "Fri, 15 Jan 2021 21:52:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "209" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "165" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 1, "failed": 0, @@ -3769,7 +3501,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -3801,53 +3533,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "0b4b1d768b6732d8e1e2db92c4465b80", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c1e531a6-ca6d-401b-ab38-74dd1713f6f4", + "apim-request-id": "721cac47-7c61-4dca-8700-674fc17e47fd", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:20 GMT", + "Date": "Fri, 15 Jan 2021 21:52:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "133" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "245" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -3879,131 +3674,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "7b10c32573be7005e456781b8e164911", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fcc71e70-29f9-49bb-9278-d55600854c3b", + "apim-request-id": "014e01b4-acf1-4245-a7f7-40107f094045", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:22 GMT", + "Date": "Fri, 15 Jan 2021 21:52:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "132" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "388" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, - "keyPhraseExtractionTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ { "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } ], "warnings": [] }, { "id": "2", - "keyPhrases": [ - "gato", - "perro", - "veterinario" + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-04-01" } } - ] - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "ffcf81d81202c9090d05f1b814f6efe8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "036b8156-c5a7-46d2-b5d8-7cb1084bdfe5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:23 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "154" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 2, - "total": 3, + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -4035,131 +3815,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7cf0ef2c2c23034018db271113bca3cb", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "ffcf81d81202c9090d05f1b814f6efe8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "85cb5249-930a-4a90-a79a-fe539908ec04", + "apim-request-id": "8257f315-84b9-492e-8dea-5d94ea21a0b3", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:24 GMT", + "Date": "Fri, 15 Jan 2021 21:52:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "179" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "268" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, - "keyPhraseExtractionTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ { "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" - ], - "warnings": [] + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] }, { "id": "2", - "keyPhrases": [ - "gato", - "perro", - "veterinario" + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-04-01" } } - ] - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "43b9ca985b77127db9476db9814c5bee", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b6abc6ba-8352-4bc8-bfb1-6476277256a7", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:25 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "153" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 2, - "total": 3, + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -4191,131 +3956,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9eef8f66cd25aced40cbe727ebf8b551", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "7cf0ef2c2c23034018db271113bca3cb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "23da5be2-55a1-4a23-9f6a-c1c2d3df8e04", + "apim-request-id": "91d5590a-367e-4075-8fb9-61510e1e276c", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:27 GMT", + "Date": "Fri, 15 Jan 2021 21:52:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "117" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "248" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, - "keyPhraseExtractionTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ { "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } ], "warnings": [] }, { "id": "2", - "keyPhrases": [ - "gato", - "perro", - "veterinario" + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-04-01" } } - ] - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "4a202662ac3cd07172ddc2dcbe8782cc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "df9f585a-e134-417d-b001-9ce2c8568204", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:28 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "133" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 2, - "total": 3, + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -4347,53 +4097,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "84aa387f04cccba5dc0d02ab745526c1", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "43b9ca985b77127db9476db9814c5bee", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c8a3c375-8442-4d14-8348-29b7500b8a43", + "apim-request-id": "9ad4d6b5-918b-458a-a380-a492a32eb018", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:29 GMT", + "Date": "Fri, 15 Jan 2021 21:52:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "121" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "245" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -4425,131 +4238,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "5b571c91112cbab11d1f2c480b11edb8", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "9eef8f66cd25aced40cbe727ebf8b551", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "16ee4c19-eae5-480e-8066-aa5f8f4b97ee", + "apim-request-id": "3a018103-906d-4462-a438-ca6f33395f7f", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:30 GMT", + "Date": "Fri, 15 Jan 2021 21:52:44 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": "177" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, - "keyPhraseExtractionTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ { "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } ], "warnings": [] }, { "id": "2", - "keyPhrases": [ - "gato", - "perro", - "veterinario" + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-04-01" } } - ] - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b3a81b49314e5d8580546d2fa9c65b1c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "50df3dd6-947c-4a6d-9b1a-83ab8ba48b39", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:32 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "154" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 2, - "total": 3, + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -4581,53 +4379,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a24a00b726306da086ef66add75dc0ca", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "4a202662ac3cd07172ddc2dcbe8782cc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d3f3aaa7-f8d5-4c3e-a029-20df9239b701", + "apim-request-id": "f389070c-a133-472f-a71a-859f3a9f1fcc", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:33 GMT", + "Date": "Fri, 15 Jan 2021 21:52:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "157" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "200" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -4659,53 +4520,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "59614a1f73ad5f7397f9dad7a4811156", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "84aa387f04cccba5dc0d02ab745526c1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7e4dccf9-1444-46be-b798-55369719c4d0", + "apim-request-id": "20f85ab7-e4ba-4406-9da8-a545a2bd1dd7", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:34 GMT", + "Date": "Fri, 15 Jan 2021 21:52:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "194" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "272" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -4737,131 +4661,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "0a9110c34ac623887a3a2c5ecad88522", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "5b571c91112cbab11d1f2c480b11edb8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2edb258d-25ac-4c52-af39-3d915035768a", + "apim-request-id": "0ecf463a-0cbe-495d-80f1-6352f1845888", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:37 GMT", + "Date": "Fri, 15 Jan 2021 21:52:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "129" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "168" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, - "keyPhraseExtractionTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ { "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" - ], - "warnings": [] - }, - { - "id": "2", - "keyPhrases": [ - "gato", - "perro", - "veterinario" + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-04-01" } } - ] - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "5f10a2940265436f8deb0b364bc8c905", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e7f54412-6b83-4b58-b04f-bc98abbfa7fe", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:38 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "127" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 2, - "total": 3, + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -4893,131 +4802,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "c7e910deb5ccd404c13ede72461494bf", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "b3a81b49314e5d8580546d2fa9c65b1c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8f8e7564-a443-409e-87fc-177548e8f492", + "apim-request-id": "d7f35414-1b6d-44a2-9a6c-41a00b7081f2", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:39 GMT", + "Date": "Fri, 15 Jan 2021 21:52:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "110" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "181" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, - "keyPhraseExtractionTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ { "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } ], "warnings": [] }, { "id": "2", - "keyPhrases": [ - "gato", - "perro", - "veterinario" + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-04-01" } } - ] - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "0142b773b171c1f1a14d7ddb3f51d7b2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3910dd9e-e228-4a54-9bf3-e945a6fd6aa9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:41 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "131" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 2, - "total": 3, + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -5049,53 +4943,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "ba802770beeedf569e3b9d2723fcfd78", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "a24a00b726306da086ef66add75dc0ca", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ee3acdd9-c8f1-4694-bfcb-4a2e0df8c519", + "apim-request-id": "0b8f06b0-dfdd-44f0-a3f1-290ca53abc3c", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:42 GMT", + "Date": "Fri, 15 Jan 2021 21:52:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "174" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "201" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -5127,53 +5084,1385 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "93c24c56c8852c931f27267f37289570", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "59614a1f73ad5f7397f9dad7a4811156", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fe99f38e-3a39-4c91-b8e4-5ee0eac51d4a", + "apim-request-id": "9baa3c4c-ba6d-448b-9c66-2fa65d774a13", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:43 GMT", + "Date": "Fri, 15 Jan 2021 21:52:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "137" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "288" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "0a9110c34ac623887a3a2c5ecad88522", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7f8161d7-1ab8-432a-9598-0c46bbc584a7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 15 Jan 2021 21:52:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "213" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "5f10a2940265436f8deb0b364bc8c905", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "952ea905-699c-44f5-9e80-5feb43ebcf68", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 15 Jan 2021 21:52:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "211" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "c7e910deb5ccd404c13ede72461494bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f8268b9b-d3c2-45e3-9902-fafd0738393a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 15 Jan 2021 21:52:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "218" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "0142b773b171c1f1a14d7ddb3f51d7b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "eb4ddca1-e292-4c7f-8ecd-ddeceb8d53c1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 15 Jan 2021 21:52:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "216" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "ba802770beeedf569e3b9d2723fcfd78", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "407d6214-2a0d-4818-9dc3-b69ad07a05d8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 15 Jan 2021 21:53:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "255" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "93c24c56c8852c931f27267f37289570", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d56f5a23-1a7b-48e2-b93d-839ab0943f2b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 15 Jan 2021 21:53:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "194" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "1f012c66da94b5d06163633614c99da4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "343dafd7-32db-4f01-85fb-e2368a68fba7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 15 Jan 2021 21:53:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "215" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "f3850550438ea82c94539bc698d7a775", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "459ea63d-b6b4-48cb-9772-5e3324139524", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 15 Jan 2021 21:53:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "183" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "f7c02da6defa7be37b0d3222655d1855", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "655ab1d6-da83-4295-8b46-d40c0b6e390a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 15 Jan 2021 21:53:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "177" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -5205,53 +6494,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "1f012c66da94b5d06163633614c99da4", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "322e818aa1a323e1ff598b413e091d8a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9e40753d-a36b-421a-8e21-b919c8933fc2", + "apim-request-id": "3e9a5f11-bfab-45da-8c0c-8bb3f4307852", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:44 GMT", + "Date": "Fri, 15 Jan 2021 21:53:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "133" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "256" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -5283,53 +6635,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f3850550438ea82c94539bc698d7a775", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "e68fedbba60972a921097881110a4336", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fa672b34-27c2-4576-859e-928a11da1b35", + "apim-request-id": "7ab959db-02c3-4db5-b247-9b79ac22bdfb", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:46 GMT", + "Date": "Fri, 15 Jan 2021 21:53:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "147" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "229" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -5361,131 +6776,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f7c02da6defa7be37b0d3222655d1855", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "163c463b75a804d14b9cf7a152a23c71", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "163daf2f-4e16-47ea-aa72-99df8ba99882", + "apim-request-id": "95f7d815-d286-4573-9ef0-e450a2c51361", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:47 GMT", + "Date": "Fri, 15 Jan 2021 21:53:09 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": "235" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, - "keyPhraseExtractionTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ { "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } ], "warnings": [] }, { "id": "2", - "keyPhrases": [ - "gato", - "perro", - "veterinario" + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-04-01" } } - ] - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "322e818aa1a323e1ff598b413e091d8a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d3efb30c-9667-4d76-9a21-937d9acb136b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:48 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "172" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 2, - "total": 3, + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -5517,131 +6917,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e68fedbba60972a921097881110a4336", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "7766a8ef31cde44bd7bc109a296012f5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c63e354f-4e83-40f5-b038-83f5b715620f", + "apim-request-id": "14610e2f-4465-40b5-ae01-e61bb773c228", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:49 GMT", + "Date": "Fri, 15 Jan 2021 21:53:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "122" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "206" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, - "keyPhraseExtractionTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ { "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } ], "warnings": [] }, { "id": "2", - "keyPhrases": [ - "gato", - "perro", - "veterinario" + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-04-01" } } - ] - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "163c463b75a804d14b9cf7a152a23c71", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a9944449-08da-425b-b0f4-a0d853afcf10", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:51 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "133" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 2, - "total": 3, + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -5673,53 +7058,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7766a8ef31cde44bd7bc109a296012f5", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "f806541507cc46e11c8a9b6cae071f7f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4a2c27cf-1b29-4351-914f-1c918f6f912e", + "apim-request-id": "69899540-b0ff-4ed0-8b74-2984c68fae6a", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:52 GMT", + "Date": "Fri, 15 Jan 2021 21:53:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "129" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "222" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -5751,131 +7199,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f806541507cc46e11c8a9b6cae071f7f", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "689106cccca30969fa583eeb6536dbeb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6e175dbb-224c-4138-a331-2912809b0786", + "apim-request-id": "d2a30157-80ee-49d4-b388-5b514547465a", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:53 GMT", + "Date": "Fri, 15 Jan 2021 21:53:13 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": "241" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, - "keyPhraseExtractionTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ { "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } ], "warnings": [] }, { "id": "2", - "keyPhrases": [ - "gato", - "perro", - "veterinario" + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-04-01" } } - ] - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "689106cccca30969fa583eeb6536dbeb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ddb5c9b9-c32b-462f-9de7-eed5c01c4df8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:54 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "118" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 2, - "total": 3, + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -5907,131 +7340,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "fe8c028a449be8a4c6205a4295df35cf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1d476238-89d7-4bc7-a12f-133df5b2c937", + "apim-request-id": "2b799fcd-ef43-4781-8ff3-2815f467c69b", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:56 GMT", + "Date": "Fri, 15 Jan 2021 21:53:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "148" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "292" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, - "keyPhraseExtractionTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ { "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } ], "warnings": [] }, { "id": "2", - "keyPhrases": [ - "gato", - "perro", - "veterinario" + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-04-01" } } - ] - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "23ce909da9cf4952ebfcfe74c8f5e1e5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6d8dc4ea-de11-4591-a689-6a604599d711", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:58 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "166" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 2, - "total": 3, + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -6063,53 +7481,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "ace2b0af207b87e361a8a2837126731b", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "23ce909da9cf4952ebfcfe74c8f5e1e5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ff1cd2b7-d8be-46ec-9f5c-25269a463a02", + "apim-request-id": "e9cfbf78-656e-4000-810d-36c5ed3338b9", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:11:59 GMT", + "Date": "Fri, 15 Jan 2021 21:53:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "207" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "178" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -6141,131 +7622,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d44e6e22b868e11baf42139f463020d0", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "ace2b0af207b87e361a8a2837126731b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "90a08795-73cd-4f7b-b01d-375c87367226", + "apim-request-id": "498ee63b-f910-4573-afa6-49234aba49e9", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:00 GMT", + "Date": "Fri, 15 Jan 2021 21:53:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "134" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "216" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, - "keyPhraseExtractionTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ { "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } ], "warnings": [] }, { "id": "2", - "keyPhrases": [ - "gato", - "perro", - "veterinario" + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-04-01" } } - ] - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e593743e89fc7d54ac46c12607ced8c5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "081383ee-9c29-4028-9f84-207498918da5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:02 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "302" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 2, - "total": 3, + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -6297,131 +7763,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "5951e2890ca7f67d9401fc390d444130", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "d44e6e22b868e11baf42139f463020d0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "44421f97-f3d1-4755-b34c-ab545338efc9", + "apim-request-id": "7fe4f9d5-d3d2-4a93-ad43-f35dac6c6e32", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:03 GMT", + "Date": "Fri, 15 Jan 2021 21:53:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "123" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "227" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, - "keyPhraseExtractionTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ { "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } ], "warnings": [] }, { "id": "2", - "keyPhrases": [ - "gato", - "perro", - "veterinario" + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-04-01" } } - ] - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "fc44d1888e92981e1ad12821f6f5d9e1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e20fe904-d122-455b-98f7-7036412cb7f2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:04 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "142" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 2, - "total": 3, + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -6453,53 +7904,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "63164e6ac6de3128f79d51fb8d1b7067", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "e593743e89fc7d54ac46c12607ced8c5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "24a1a443-07c8-413d-835d-e15e9d6e7934", + "apim-request-id": "eb838e9b-bbca-4000-91e9-8ba356a28910", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:05 GMT", + "Date": "Fri, 15 Jan 2021 21:53:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "175" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "341" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -6531,131 +8045,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "359d9105db89fa32c3b93fd6e45cff9e", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "5951e2890ca7f67d9401fc390d444130", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cd69f2ed-e290-4ee6-b37b-f66e1e28ed5e", + "apim-request-id": "09c3fff2-fb56-4f78-b6c6-285fee1f7120", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:07 GMT", + "Date": "Fri, 15 Jan 2021 21:53:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "108" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "166" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, - "keyPhraseExtractionTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ { "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } ], "warnings": [] }, { "id": "2", - "keyPhrases": [ - "gato", - "perro", - "veterinario" + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-04-01" } } - ] - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "bece1a27dd2ec151a81305f43d220aff", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "dafae8fe-f9ee-4a52-ab37-d2e026c223a3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:09 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "126" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 2, - "total": 3, + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -6687,131 +8186,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "651bc061a4578e571b1b9f2587514d9a", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "fc44d1888e92981e1ad12821f6f5d9e1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2dc189df-3b94-4dbe-8d3c-f7b852d2818b", + "apim-request-id": "8c9fa7c1-1d1c-4007-a3fa-9308a07b2685", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:10 GMT", + "Date": "Fri, 15 Jan 2021 21:53:23 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": "228" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, - "keyPhraseExtractionTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ { "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } ], "warnings": [] }, { "id": "2", - "keyPhrases": [ - "gato", - "perro", - "veterinario" + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-04-01" } } - ] - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "73d4b29db14c27393fdc8c76d63ebda1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3de7107f-f450-4bad-845f-c362c6656e30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:11 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "116" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 2, - "total": 3, + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -6843,53 +8327,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "24753fae9a408347c33fa2133d2c3956", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "63164e6ac6de3128f79d51fb8d1b7067", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5499541f-7269-4d9a-8cfe-81c7dce553ad", + "apim-request-id": "a3436eb1-ce6c-4067-9dc9-4a69d4325dcb", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:12 GMT", + "Date": "Fri, 15 Jan 2021 21:53:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "171" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "235" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -6921,131 +8468,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "8a566ac5974eafb387f4267b17e1b8dd", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "359d9105db89fa32c3b93fd6e45cff9e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a8f4677e-a0dd-4c0f-8771-d8c2d2f5867c", + "apim-request-id": "dc89da34-489d-496d-9d16-c49bbbd90b2f", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:13 GMT", + "Date": "Fri, 15 Jan 2021 21:53:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "138" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "182" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, - "keyPhraseExtractionTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ { "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } ], "warnings": [] }, { "id": "2", - "keyPhrases": [ - "gato", - "perro", - "veterinario" + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-04-01" } } - ] - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "4877fe5d28dc03596b51b00c0e26e912", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6296e5dd-350e-4cff-a29f-8176aada8509", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:15 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "132" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 2, - "total": 3, + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -7077,131 +8609,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "6bb035a232e716528cc69d4c73cb6ce1", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "bece1a27dd2ec151a81305f43d220aff", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a647d691-e2c4-4cef-b39d-932a59fa6a15", + "apim-request-id": "5080a3e7-3dfc-48e8-b87e-9d7511b0f7e8", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:16 GMT", + "Date": "Fri, 15 Jan 2021 21:53:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "144" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "177" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, - "keyPhraseExtractionTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ { "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } ], "warnings": [] }, { "id": "2", - "keyPhrases": [ - "gato", - "perro", - "veterinario" + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-04-01" } } - ] - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "3eb5c587f1b49c7a11531ffde7a6a061", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "840e09ab-42b1-4995-bfc6-9a11b13b396a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:17 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "167" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 2, - "total": 3, + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -7233,53 +8750,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e1d8130a4c302af6ac61bb158b0d8f9f", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "651bc061a4578e571b1b9f2587514d9a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8e5f50e5-befa-4a7f-b6f0-14a1badb61f6", + "apim-request-id": "484f8896-e1a2-40e0-8c07-2877047c22d4", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:19 GMT", + "Date": "Fri, 15 Jan 2021 21:53: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-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "180" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -7311,131 +8891,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "4985cee5ab70b05ebb135a9313552ee5", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "73d4b29db14c27393fdc8c76d63ebda1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3e87693c-5159-454f-8b6a-0118f034caa9", + "apim-request-id": "e76c5dd4-5596-4367-86a8-f546a55a4bc8", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:20 GMT", + "Date": "Fri, 15 Jan 2021 21:53:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "227" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "221" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, - "keyPhraseExtractionTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ { "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } ], "warnings": [] }, { "id": "2", - "keyPhrases": [ - "gato", - "perro", - "veterinario" + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-04-01" } } - ] - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "60413b258af23ab1cf8b925335651103", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "59fdf7ef-8d69-41c9-afc4-97d4fad58b99", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:21 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "167" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 2, - "total": 3, + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -7467,53 +9032,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "191880c357215ff0b528261cf2621756", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "24753fae9a408347c33fa2133d2c3956", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "12deb5a0-2d00-4647-862b-dda6a1420b77", + "apim-request-id": "09c4b755-0e52-4d1c-8f65-693e87bddfdf", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:23 GMT", + "Date": "Fri, 15 Jan 2021 21:53:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "111" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "215" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -7545,53 +9173,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "4ff0d6332fcb5aac1c4a7ae5180b7a56", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "8a566ac5974eafb387f4267b17e1b8dd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "56322f8e-0b76-4d6b-98db-6fe8b95dc520", + "apim-request-id": "09e77a44-d00d-494c-9544-fdd55ea93150", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:24 GMT", + "Date": "Fri, 15 Jan 2021 21:53:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "196" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "178" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -7623,44 +9314,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "92cf5602143dcdc44be2abca6494486c", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "4877fe5d28dc03596b51b00c0e26e912", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3b8ce5d2-19aa-4a3a-977b-1bc1e024ed3f", + "apim-request-id": "9e3c4a19-abbe-4e37-a1d2-845d25990587", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:12:26 GMT", + "Date": "Fri, 15 Jan 2021 21:53:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "256" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "383" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "cc14340b-07a9-413c-b1ea-cdf12f5a41f5_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:10:16Z", - "createdDateTime": "2020-11-17T20:10:15Z", - "expirationDateTime": "2020-11-18T20:10:15Z", + "jobId": "d201455e-1656-4a19-810b-4bc65600d67e_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:51:31Z", + "createdDateTime": "2021-01-15T21:51:30Z", + "expirationDateTime": "2021-01-16T21:51:30Z", "status": "succeeded", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16Z" + "lastUpdateDateTime": "2021-01-15T21:51:31Z" }, "completed": 3, "failed": 0, @@ -7669,7 +9354,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -7738,7 +9423,7 @@ "entityRecognitionPiiTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -7776,7 +9461,11 @@ "id": "2", "error": { "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" + "message": "Invalid Language Code.", + "innererror": { + "code": "UnsupportedLanguageCode", + "message": "Invalid language code. Supported languages: en" + } } } ], @@ -7787,7 +9476,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:10:16.4090615Z", + "lastUpdateDateTime": "2021-01-15T21:51:31.9025058Z", "results": { "inTerminalState": true, "documents": [ @@ -7822,6 +9511,6 @@ "Variables": { "RandomSeed": "143612553", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://ta-s-westeurope.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasksAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasksAsync.json index 821a24deab27f..4d0e97cfe03e9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasksAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasksAsync.json @@ -1,21 +1,14 @@ { "Entries": [ { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Content-Length": "478", + "Accept": "application/json, text/json", + "Content-Length": "546", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-612fe559685ba04f933e837be7de65fc-43da7fe28c8f024f-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "84b09b92aaeab256574bef378bac8fd4", "x-ms-return-client-request-id": "true" }, @@ -38,14 +31,16 @@ "entityRecognitionTasks": [ { "parameters": { - "model-version": "latest" + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" } } ], "entityRecognitionPiiTasks": [ { "parameters": { - "model-version": "latest" + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" } } ], @@ -61,55 +56,49 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "46b8c69c-3952-46e5-938a-3a003dd93721", - "Date": "Tue, 17 Nov 2020 20:14:43 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", + "apim-request-id": "8683dfa7-82ad-452c-b88e-92cdf4b1d588", + "Date": "Fri, 15 Jan 2021 21:53:35 GMT", + "operation-location": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "320" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "178" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "28fe54c562f9429f154e7e8cbd24fdd6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3e06f812-37ff-4b37-9c02-fc45227e9ec8", + "apim-request-id": "5bf52cf8-8c61-43fe-b213-d26015369d4d", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:43 GMT", + "Date": "Fri, 15 Jan 2021 21:53:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:42Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:35Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:42Z" + "lastUpdateDateTime": "2021-01-15T21:53:35Z" }, "completed": 0, "failed": 0, @@ -119,44 +108,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d5a26188dff6bc6bb1f8fa159c08c192", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "719f0367-d8e6-4443-b7c5-bf5d98891f93", + "apim-request-id": "eeeca59b-9d6f-4e11-9b72-cf8cb6a957c2", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:44 GMT", + "Date": "Fri, 15 Jan 2021 21:53:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "81" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "111" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", - "status": "notStarted", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", + "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 0, "failed": 0, @@ -166,44 +149,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d5de44db1316307dfb6e6e9b2cc9f433", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3efac80e-926e-4c20-8823-0cf58bb1a7f9", + "apim-request-id": "763ebcc6-bc11-436f-b244-17756f1c1657", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:45 GMT", + "Date": "Fri, 15 Jan 2021 21:53:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "112" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "149" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 0, "failed": 0, @@ -213,44 +190,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "2aae184eb909e6dee94276006789a50d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f8076248-b7e5-4899-bd72-bd5e6dd0f32b", + "apim-request-id": "c5ed8cb8-135f-4fe3-8ab6-50cdce9d77d4", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:46 GMT", + "Date": "Fri, 15 Jan 2021 21:53:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "146" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "150" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -259,7 +230,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -291,44 +262,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "79b1eb8c274575c0e472da8870cf8fe8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "aa3f5c4c-38bc-46ba-958e-bbbe83f051cf", + "apim-request-id": "903c8bed-d760-4f33-8d05-01d68953d1db", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:47 GMT", + "Date": "Fri, 15 Jan 2021 21:53:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "128" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "179" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -337,7 +302,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -369,44 +334,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "83c6c7049759218966f8ecd39c7cc871", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7dc20e84-5fdd-409a-a739-5bccf4741c0d", + "apim-request-id": "da6ed664-8380-4b59-b07d-bb057cadbb3d", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:49 GMT", + "Date": "Fri, 15 Jan 2021 21:53:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "134" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "139" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -415,7 +374,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -447,44 +406,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "400e61c97b1727ed58394696df567619", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5dcb477b-dfa2-456e-8dd3-6290598e9804", + "apim-request-id": "f94ff9f1-8ef6-4f9e-b912-427fe04d5776", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:50 GMT", + "Date": "Fri, 15 Jan 2021 21:53:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "181" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "132" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -493,7 +446,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -525,44 +478,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9ffc8eb221c3f5b3628f124d3aecd867", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b6d6ea59-9874-4137-94bb-eb9e6c8a497b", + "apim-request-id": "3e8f88c9-9273-4768-9a03-3a2b574fe639", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:51 GMT", + "Date": "Fri, 15 Jan 2021 21:53:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "119" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "164" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -571,7 +518,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -603,44 +550,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "0fbf68a94fc088d0da9f2b2051f24210", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "46220b73-50f6-42e0-adff-703142416a4c", + "apim-request-id": "b360964d-cbab-488f-9378-158ea731ccf6", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:52 GMT", + "Date": "Fri, 15 Jan 2021 21:53:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "123" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "181" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -649,7 +590,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -681,44 +622,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "0e20d3822980a7aeae19de88689fec6c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6884f436-02b7-4dda-b603-a5d113fe1b07", + "apim-request-id": "558de853-6744-4ee2-a0b7-673a3382ae9c", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:55 GMT", + "Date": "Fri, 15 Jan 2021 21:53:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "150" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "179" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -727,7 +662,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -759,44 +694,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "77edde6166976358be73c523f693a470", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ac0f1fd7-52ca-4f1b-b86c-1df19f1eafcb", + "apim-request-id": "8b7a4ec4-d647-4c45-af03-ac9edd43366d", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:56 GMT", + "Date": "Fri, 15 Jan 2021 21:53:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "133" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "158" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -805,7 +734,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -837,44 +766,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "67cb024dcacb80e6b91761a771471f3a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8a161e62-abbf-4339-91db-ca3a49fb6159", + "apim-request-id": "7c1cb456-4d72-4caf-b1fd-98f03d1befc2", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:57 GMT", + "Date": "Fri, 15 Jan 2021 21:53:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "207" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "155" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -883,7 +806,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -915,44 +838,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "72bebeb3ca051b787abd4f0c638bb11a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "81b3a4ff-0c55-4704-a704-d34afb88fa93", + "apim-request-id": "2cf53908-f2da-4b47-ad79-868f16ed80d3", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:14:59 GMT", + "Date": "Fri, 15 Jan 2021 21:53:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "353" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "133" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -961,7 +878,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -993,44 +910,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "663a6d7584d496a0f86cbd7f05b0f176", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ff680ac3-976a-490f-bc85-a265037575a6", + "apim-request-id": "37673610-4637-45a2-9a90-cf4847817852", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:00 GMT", + "Date": "Fri, 15 Jan 2021 21:53:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "131" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "145" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -1039,7 +950,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -1071,44 +982,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "37708b5432d4826a8ab0ed0e7ad91c2e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4dd83572-d048-4824-bbec-a975417a6ee8", + "apim-request-id": "66962fe2-e4d8-4334-9484-7ab17d06e0d3", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:01 GMT", + "Date": "Fri, 15 Jan 2021 21:53:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "139" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "126" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -1117,7 +1022,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -1149,44 +1054,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "03324666b90d2e661e2879980cf815c9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6316842f-57bd-4428-83cc-135cf0d6a553", + "apim-request-id": "ba3641cc-6c85-4ca2-8925-2109a7779ede", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:02 GMT", + "Date": "Fri, 15 Jan 2021 21:53:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "162" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "130" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -1195,7 +1094,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -1227,44 +1126,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d8b8d8cb791a424603b7db2397911b1e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4fba098b-e215-4c8d-8993-086cd8a0caad", + "apim-request-id": "671d79ce-ea4a-4678-b341-55fdfe8d381e", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:04 GMT", + "Date": "Fri, 15 Jan 2021 21:53:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "126" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "178" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -1273,7 +1166,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -1305,44 +1198,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "bf198f4fee7e9a69244218abb8d27691", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d5692019-e499-46f7-95fd-55b2627da57f", + "apim-request-id": "1ddedb3e-6aee-4459-9e48-0e02b2706b97", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:05 GMT", + "Date": "Fri, 15 Jan 2021 21:53:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "190" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "165" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -1351,7 +1238,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -1383,44 +1270,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "a142239a4421ec13ffef0055dd42968c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9c51ed15-ae5f-4f82-8e26-d34e58983018", + "apim-request-id": "75dc3c7c-85f0-4001-94e5-26e57628fada", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:06 GMT", + "Date": "Fri, 15 Jan 2021 21:53:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "166" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "191" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -1429,7 +1310,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -1461,44 +1342,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "7d485b0c56dfdd4b6f1db3d8609a8a30", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "35422dbc-0b19-41ee-9db3-5af552661234", + "apim-request-id": "dcfca8af-0bf9-4035-a906-cc2c9e290c5b", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:07 GMT", + "Date": "Fri, 15 Jan 2021 21:54:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "165" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "154" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -1507,7 +1382,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -1539,44 +1414,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "74894a41794e0bfd7b2cbf8eee13bde2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "78d736f0-492c-4a5c-b9cf-33660ce408d5", + "apim-request-id": "62a0cd25-4906-428b-b510-fcc5dee6c395", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:09 GMT", + "Date": "Fri, 15 Jan 2021 21:54:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "132" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "165" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -1585,7 +1454,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -1617,44 +1486,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "5d9f8babf88943b1d7653203903a8c64", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "891825fe-185c-44a7-89cf-20b9c6d386fa", + "apim-request-id": "49c9a57e-a7ee-4b84-aa24-627f74105167", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:10 GMT", + "Date": "Fri, 15 Jan 2021 21:54:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "144" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "157" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -1663,7 +1526,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -1695,44 +1558,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9214cf6522b9923d5e3d01b297bdee5b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "404d1b10-e6fe-4c1c-b5c5-e187968da0d9", + "apim-request-id": "bcfa9004-e615-47b0-ac0b-acadf215b487", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:12 GMT", + "Date": "Fri, 15 Jan 2021 21:54:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "144" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "117" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -1741,7 +1598,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -1773,44 +1630,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d42dd15f2cfb48a798459ce947f97a40", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9062ed84-6ce2-4594-84f5-34cff1fc8b79", + "apim-request-id": "6550e2e6-5755-4b67-8fb1-b9965be0e39e", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:13 GMT", + "Date": "Fri, 15 Jan 2021 21:54:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "158" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "154" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -1819,7 +1670,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -1851,44 +1702,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "1e285aa02aff88284d0cff4cf7feac1a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b03c76ec-69f8-4ae5-a1a9-8fe0c725ea85", + "apim-request-id": "1260f67f-018b-4704-ac37-ebd189254543", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:14 GMT", + "Date": "Fri, 15 Jan 2021 21:54:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "141" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "148" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -1897,7 +1742,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -1929,44 +1774,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "bfa4d676b70d386928cbf97385544b64", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "613ef5a4-8ca7-4563-8dc2-b22e4da36aff", + "apim-request-id": "877491dc-5415-46d7-9e21-18bd5966a261", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:16 GMT", + "Date": "Fri, 15 Jan 2021 21:54:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "159" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "148" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -1975,7 +1814,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -2007,44 +1846,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "3c12c0c2d094355ba8a586ee2d5b5199", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "64bdc9b9-6ecf-47bc-8f57-92247a16b71c", + "apim-request-id": "b12e0138-39b7-4e6a-9123-00e7c4400fe3", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:17 GMT", + "Date": "Fri, 15 Jan 2021 21:54:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "129" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "188" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -2053,7 +1886,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -2085,44 +1918,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "70728299bb55e933f1f0f63430b502f9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "11fc3bb2-864f-4c33-a928-c07f645d5e1a", + "apim-request-id": "edf97f63-6ff7-49e3-b69b-973feec2c7aa", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:18 GMT", + "Date": "Fri, 15 Jan 2021 21:54:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "162" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "189" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -2131,7 +1958,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -2163,44 +1990,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "36899ac16feca6857a6e1668307a0acd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "da8c73da-70f4-4363-90e9-a4126d651344", + "apim-request-id": "7c600b24-1ab9-4522-b8a7-cb433b537945", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:19 GMT", + "Date": "Fri, 15 Jan 2021 21:54:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "123" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "180" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -2209,7 +2030,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -2241,44 +2062,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "03da6079dae2070f8d294ba4d92704f3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "da58f20f-45f7-4fff-abe5-25c7e059fdf2", + "apim-request-id": "b58ef526-4a3f-4f04-acb1-f368a0d67653", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:21 GMT", + "Date": "Fri, 15 Jan 2021 21:54:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "171" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "155" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -2287,7 +2102,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -2319,44 +2134,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "932d8da21ad129adfccbf6e6a4cbb876", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "aa72c784-069b-4469-b708-daa34c41e13b", + "apim-request-id": "ab2c82c8-7d42-4edd-85d7-12530b372c61", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:22 GMT", + "Date": "Fri, 15 Jan 2021 21:54:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "149" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "152" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -2365,7 +2174,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -2397,44 +2206,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d0ba29e5ffdbe7168a81a9c323e1cd53", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d5b126bb-ea04-48a8-8407-000715ac7a18", + "apim-request-id": "408437dc-aeac-49e8-a6bd-26edd5c4b833", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:23 GMT", + "Date": "Fri, 15 Jan 2021 21:54:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "166" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "173" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -2443,7 +2246,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -2475,44 +2278,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "a2c6236a774d5efbb2b00617e32962c2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3ff93656-91f2-4197-a8d0-c7363b162848", + "apim-request-id": "f1004c84-f5ee-4ce4-bd83-66646cf2b58a", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:24 GMT", + "Date": "Fri, 15 Jan 2021 21:54:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "132" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "152" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -2521,7 +2318,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -2553,44 +2350,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b0bed470336ca2177745095071e9061a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ba7eae1f-e008-4002-b682-f7e2c622d2f6", + "apim-request-id": "342631d8-e459-468b-be13-23ca804b9680", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:27 GMT", + "Date": "Fri, 15 Jan 2021 21:54:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "132" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "170" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -2599,7 +2390,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -2631,44 +2422,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "817ba2fe16046e292d5c1d2bf8fe0360", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "97f90403-da88-4d57-aea2-9551e6881932", + "apim-request-id": "7dadbae6-a3cc-46ba-b9fb-137fded01024", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:28 GMT", + "Date": "Fri, 15 Jan 2021 21:54:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "155" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "123" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -2677,7 +2462,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -2709,44 +2494,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4f53e71e1c2336e70b232b076dabedc9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7b8780fb-a10c-4a6c-8426-b6c2073bc5dc", + "apim-request-id": "95a2609b-0889-4f5a-bd77-5ed92c9ca8e0", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:29 GMT", + "Date": "Fri, 15 Jan 2021 21:54:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "211" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "193" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -2755,7 +2534,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -2787,44 +2566,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4119ebaae1ad59bdaa50821016eca978", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3de0b2c1-bca2-4675-860a-3074bb7f6b1b", + "apim-request-id": "c36758c5-0b72-4f3b-b838-90542963b738", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:30 GMT", + "Date": "Fri, 15 Jan 2021 21:54:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "133" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "158" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -2833,7 +2606,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -2865,44 +2638,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "8a31a842b696e1f7bb4575e1eb220082", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d94d5bc9-2ec2-4168-af3d-e008d50d37d2", + "apim-request-id": "dd9aba48-ff4f-4b89-a814-d857dccd18df", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:32 GMT", + "Date": "Fri, 15 Jan 2021 21:54:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "136" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "134" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -2911,7 +2678,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -2943,44 +2710,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "0c81546ec2e53db229f9a4d29ad61f1f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2e366833-fdf8-4e9c-a7e2-549e95f3b5b8", + "apim-request-id": "b7596739-5522-490c-bdcf-96915fcd75fb", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:33 GMT", + "Date": "Fri, 15 Jan 2021 21:54:26 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": "157" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -2989,7 +2750,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -3021,44 +2782,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c4c4b2796279f332f43885686cdb6e88", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "12939dfe-416c-410e-9201-cd48669fc92f", + "apim-request-id": "3293cc25-27f3-4914-9d8e-c133b91f2e61", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:34 GMT", + "Date": "Fri, 15 Jan 2021 21:54:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "122" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "142" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -3067,7 +2822,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -3099,44 +2854,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c2a1004f9c6a8093f6f4609d122446e5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dc0d1eaf-50f0-47bc-bc5c-b457c38aadda", + "apim-request-id": "8f6e3f7f-ef3a-4d84-bbd5-834b6ea6566c", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:35 GMT", + "Date": "Fri, 15 Jan 2021 21:54:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "121" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "169" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -3145,7 +2894,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -3177,44 +2926,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "386755253c5e0c08218d18ad3c4ad04d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a6a3bbb9-e276-4d3d-9c2d-1f40790b9151", + "apim-request-id": "b686de9c-5a88-4565-a0f3-995d59ebbb8d", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:36 GMT", + "Date": "Fri, 15 Jan 2021 21:54:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "153" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "149" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -3223,7 +2966,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -3255,44 +2998,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9a831c8a5d35dcb41f44ce850195e1cf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9968720a-b342-434d-a487-46b157fd5bc7", + "apim-request-id": "be8263b2-070d-4054-bc99-55248ca77765", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:38 GMT", + "Date": "Fri, 15 Jan 2021 21:54:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "155" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "142" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -3301,7 +3038,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -3333,44 +3070,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "1642a0f13674122af795a0dc84e643ab", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "55765fa6-597b-4367-86f8-c3a3a250a978", + "apim-request-id": "07ca47df-29da-4aa8-ad2e-46915bd6059c", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:40 GMT", + "Date": "Fri, 15 Jan 2021 21:54:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "186" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "183" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -3379,7 +3110,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -3411,44 +3142,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f5121223aca1c7b0a08b19196e820a8b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "46782d72-9727-4b4c-a184-d3485f09140d", + "apim-request-id": "13d40353-925b-4a0f-8586-5235c91f8e18", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:41 GMT", + "Date": "Fri, 15 Jan 2021 21:54:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "133" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "168" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -3457,7 +3182,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -3489,44 +3214,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9cbb49acba0854d9f270a29fbdd75839", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "32a5d994-51b8-45dd-86ed-53fa89c2d01b", + "apim-request-id": "abd69556-255c-4421-a711-2fa2888d8fce", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:42 GMT", + "Date": "Fri, 15 Jan 2021 21:54:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "137" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "253" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -3535,7 +3254,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -3567,44 +3286,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ef622300eb83442df07a75e81c10a474", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "35ee67ef-668c-428e-bcd4-ca034f051493", + "apim-request-id": "81f9c028-cdac-4014-a2d9-97433bfe5368", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:43 GMT", + "Date": "Fri, 15 Jan 2021 21:54:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "115" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "203" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -3613,7 +3326,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -3645,44 +3358,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "3a30148ba62a69a239bd03310a100ac9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8fc5f008-1deb-4722-9b5c-ea00599752f4", + "apim-request-id": "78c45816-1afc-4517-8c9f-e12ab3b947ea", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:44 GMT", + "Date": "Fri, 15 Jan 2021 21:54:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "172" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "175" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -3691,7 +3398,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -3723,44 +3430,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4b19e0321b20c0081b77ac8d44f038e2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6cb22a18-6fce-4c66-8e5a-c3cc1d10e0a2", + "apim-request-id": "13caca4d-907f-404b-9a05-2b1a41aa804c", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:46 GMT", + "Date": "Fri, 15 Jan 2021 21:54:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "150" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "123" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -3769,7 +3470,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -3801,44 +3502,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "a8142ecc1da7590f80f8b5c5e8fc3adf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0e3961a9-2a04-42a3-a4e0-c7fb23e32897", + "apim-request-id": "04c10e8f-0e54-41a7-87f3-11827455c2ec", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:47 GMT", + "Date": "Fri, 15 Jan 2021 21:54:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "147" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "125" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 1, "failed": 0, @@ -3847,7 +3542,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -3879,131 +3574,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "3cb6ac7059f770540b6f1eb2fa152548", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "68e9f1b4-50a3-468e-ae24-c4e90fd3a5ed", + "apim-request-id": "37e86f60-bd54-40a8-b213-32db4d671317", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:49 GMT", + "Date": "Fri, 15 Jan 2021 21:54:42 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": "223" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, - "keyPhraseExtractionTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } ], "warnings": [] }, { "id": "2", - "keyPhrases": [ - "gato", - "perro", - "veterinario" + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-04-01" } } - ] - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "db64218561fc1421d1bfca276543d81f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ad0039bd-cf7a-41ee-8478-a40eb6343834", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:50 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "149" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 2, - "total": 3, + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -4035,58 +3715,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "971dcc3dfb3a72ebd9a39c37ff5c5f6b", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "db64218561fc1421d1bfca276543d81f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ca39c7e8-bf8f-4214-81e3-f054cf070285", + "apim-request-id": "75b1524d-ef2a-4cc2-9234-41026bd480b6", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:52 GMT", + "Date": "Fri, 15 Jan 2021 21:54:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "282" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "226" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -4112,25 +3785,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -4162,58 +3856,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "c73f6dd35e970fe38ba16a378e2c0bc8", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "971dcc3dfb3a72ebd9a39c37ff5c5f6b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "20776976-5ef8-4dfb-9aa1-cbd4ced4f794", + "apim-request-id": "785a76f6-2c98-4cc1-9b48-ec190f68690f", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:53 GMT", + "Date": "Fri, 15 Jan 2021 21:54:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "204" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -4239,25 +3926,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -4289,58 +3997,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "2d75ff978df78a0e36f20158c4e91574", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "c73f6dd35e970fe38ba16a378e2c0bc8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "54c63ec1-a528-4bff-8492-392f2fc10951", + "apim-request-id": "500ee144-8a47-458f-bb47-12e8801e51be", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:55 GMT", + "Date": "Fri, 15 Jan 2021 21:54:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "256" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "199" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -4366,28 +4067,49 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" - } - } - ], - "keyPhraseExtractionTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", - "results": { - "inTerminalState": true, - "documents": [ + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", + "results": { + "inTerminalState": true, + "documents": [ { "id": "1", "keyPhrases": [ @@ -4416,58 +4138,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f8535f601104de87e90e0c9890b3e4ad", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "2d75ff978df78a0e36f20158c4e91574", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "26c13997-2311-4fb3-b736-24564b9c0b7c", + "apim-request-id": "cb913df5-0baa-48ef-9aa6-ab305d8f2040", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:56 GMT", + "Date": "Fri, 15 Jan 2021 21:54:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "272" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "215" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -4493,25 +4208,187 @@ } ], "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "errors": [ + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] } ], + "errors": [], "modelVersion": "2020-07-01" } } + ] + } + } + }, + { + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "f8535f601104de87e90e0c9890b3e4ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bfac3ef2-cce1-4cc7-ab5e-4e7d6583e2ea", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 15 Jan 2021 21:54:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "249" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:53:36Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -4543,58 +4420,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ffa0d49831e646735fb591a55c8a4aa1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a3bc08de-a111-409c-ab68-570a2711ecf9", + "apim-request-id": "5f4f6eb1-a2cb-484d-99e8-d8dd8c4aeaf2", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:57 GMT", + "Date": "Fri, 15 Jan 2021 21:54:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "173" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "203" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -4620,25 +4490,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -4670,58 +4561,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "2fd7f68c13d986c4779743e98175f982", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a9f5e5eb-8f37-4721-9df3-6098e49db940", + "apim-request-id": "34ff738b-3a7b-4af4-9690-eb1338685b57", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:15:58 GMT", + "Date": "Fri, 15 Jan 2021 21:54:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "169" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "175" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -4747,25 +4631,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -4797,58 +4702,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "efc0540e15492e8eec0d984f7fe2815f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3ebcfa5d-bfd8-4904-b851-8389cab6668c", + "apim-request-id": "44d9e090-6cd5-4e43-bb5a-0d51879ab8c5", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:00 GMT", + "Date": "Fri, 15 Jan 2021 21:54:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "198" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "226" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -4866,33 +4764,54 @@ "confidenceScore": 0.85 }, { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 } ], "warnings": [] } ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -4924,58 +4843,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9a0c6ac3b4dc85d4101a884fed89c4e9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cd19b5af-b654-432f-b3be-ad82cc5c5031", + "apim-request-id": "3d5b5090-ba57-43c4-bda8-f158d9e04d59", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:02 GMT", + "Date": "Fri, 15 Jan 2021 21:54:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "237" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "211" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -5001,25 +4913,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -5051,58 +4984,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "08960ebb5bc9765867a843cb7a750695", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fb215deb-bdf3-4b4e-9e6e-8fe7d3f81894", + "apim-request-id": "f8e4a6e5-670e-461c-a001-9ed2365d1939", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:03 GMT", + "Date": "Fri, 15 Jan 2021 21:54:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "285" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "451" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -5128,25 +5054,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -5178,58 +5125,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "1626e4155e6959a6803bdf2e8d3e4162", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "60a8d9fc-a762-471f-8e75-6d144e57f1f2", + "apim-request-id": "b9959441-ae34-4b99-b5de-ee9a63377bed", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:04 GMT", + "Date": "Fri, 15 Jan 2021 21:54:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "183" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "237" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -5255,25 +5195,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -5305,58 +5266,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "7193af48794b67961295323371080b9b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "700562fa-3406-494d-8415-97b6d1c3a484", + "apim-request-id": "cd496686-1d27-4cb5-9754-9dab026e70b1", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:05 GMT", + "Date": "Fri, 15 Jan 2021 21:54:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "174" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "237" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -5382,25 +5336,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -5432,58 +5407,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "0939f213ad635c80683d878e7b29e928", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "11dc2f72-acae-4555-aee2-53934fcdf2c4", + "apim-request-id": "00ff8ad8-c139-4f83-a72e-000c15fb3d8f", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:07 GMT", + "Date": "Fri, 15 Jan 2021 21:55:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "213" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "214" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -5509,25 +5477,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -5559,58 +5548,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ca82e06795e19b4a4ebe04d32b72e777", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "36b68b53-c074-4a3f-94f5-a1fd2faa7fb2", + "apim-request-id": "abab5faa-8577-4648-bb89-681b41a4bd5f", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:08 GMT", + "Date": "Fri, 15 Jan 2021 21:55:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "153" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "210" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -5628,33 +5610,54 @@ "confidenceScore": 0.85 }, { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 } ], "warnings": [] } ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -5686,58 +5689,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9a1a443037049bff2e36080df107ece8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "97d1dced-aa9b-4285-a9da-d9b30dcc077f", + "apim-request-id": "3ecbee9a-4a8b-487f-bd19-a6bc6ab2b2fc", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:09 GMT", + "Date": "Fri, 15 Jan 2021 21:55:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "181" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "208" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -5763,25 +5759,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -5813,58 +5830,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "91cc09ab40867eb9a89ebba4a8ac30f5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ffc011d7-033c-417f-a1cd-85298dbc9ae1", + "apim-request-id": "1de1f25d-60f2-4d0a-b2c2-d9506a06cf06", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:11 GMT", + "Date": "Fri, 15 Jan 2021 21:55:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "310" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "176" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -5890,25 +5900,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -5940,58 +5971,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "375e10564e0f2f24e1e79caa8c3ca946", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c4649c83-e5c7-4434-92de-2a41bf9890b3", + "apim-request-id": "5057b9df-f2af-42b1-a610-8d5f861eb58e", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:13 GMT", + "Date": "Fri, 15 Jan 2021 21:55:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "191" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "245" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -6017,25 +6041,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -6067,58 +6112,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "21281cd256a6eff18a9cf2667c5af282", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5c1808ba-468e-4c34-ae14-7bf4dab0d613", + "apim-request-id": "939ac122-11e2-4b99-af7a-89cecdd6f351", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:14 GMT", + "Date": "Fri, 15 Jan 2021 21:55:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "225" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "221" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -6144,25 +6182,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -6194,58 +6253,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e1b71306b4a95cd9e59caf9ea30ff26c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f8166144-e3a0-4f8a-b00d-f4995d1c77d1", + "apim-request-id": "a29cc502-9a27-4b0c-b022-dea65dae81dc", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:15 GMT", + "Date": "Fri, 15 Jan 2021 21:55:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "201" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "1252" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -6271,25 +6323,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -6321,58 +6394,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "8bd274f40e84ff4f1e6ead735cbdb387", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "12b60b2c-a128-48e3-8ace-e7d2b8d5124d", + "apim-request-id": "fbe00679-861d-4471-8d4d-4577deb168cb", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:16 GMT", + "Date": "Fri, 15 Jan 2021 21:55:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "154" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "473" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -6383,40 +6449,61 @@ "confidenceScore": 0.83 }, { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 }, { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 } ], "warnings": [] } ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -6448,58 +6535,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "79a419f4c8841d9c43cb3c0aa7524c7a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6bc7ffec-9d01-49df-9b79-29d53579b3af", + "apim-request-id": "a1db2ac7-f7c6-4162-bbe3-4c75776f94c4", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:18 GMT", + "Date": "Fri, 15 Jan 2021 21:55:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "311" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "218" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -6525,25 +6605,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -6575,58 +6676,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "077285a96688f7fec4b7c23b07660028", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "77725b25-24c0-4ec5-a05c-f57f7febfa9c", + "apim-request-id": "20b93104-9fa8-46f2-b99e-9b095d15430c", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:19 GMT", + "Date": "Fri, 15 Jan 2021 21:55:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "219" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "167" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -6652,25 +6746,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -6702,58 +6817,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "8aaa27e8796b2ce7d8b448b8d24458cc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9251021d-07c7-43f8-9365-a1cac224daab", + "apim-request-id": "3c9b3504-2856-4ec8-a822-dd92c59a79e9", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:20 GMT", + "Date": "Fri, 15 Jan 2021 21:55:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "165" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "169" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -6779,25 +6887,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -6829,58 +6958,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d6c93222ab4b8dfe1badb4cc056116dd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e9821797-3d9c-4041-a89b-3fbd32560b5a", + "apim-request-id": "beaf1f07-304e-49a4-8776-36bf74ecfd7d", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:23 GMT", + "Date": "Fri, 15 Jan 2021 21:55:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "222" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "356" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -6906,25 +7028,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -6956,58 +7099,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "7f2113cbc1a7300f9e462fd41e45247f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f5814ab5-df4f-419f-a56e-1f086dd8bad5", + "apim-request-id": "7de14c3f-6439-4d17-9b70-28dbc155e21a", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:24 GMT", + "Date": "Fri, 15 Jan 2021 21:55:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "187" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "192" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -7033,25 +7169,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -7083,58 +7240,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d419f65f299c3ddd281c6ebec41a2777", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4b9fd68d-3a83-4914-b485-9de642c64b11", + "apim-request-id": "1ba1afc8-79b6-4f04-baef-d316e38dccab", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:25 GMT", + "Date": "Fri, 15 Jan 2021 21:55:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "193" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "186" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -7152,33 +7302,54 @@ "confidenceScore": 0.85 }, { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 } ], "warnings": [] } ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -7210,58 +7381,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "bfed6a9dd8236024239838057c2a6fd6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f508f03b-6a1f-4141-bbf3-730138418e8f", + "apim-request-id": "df0ad6bf-2d5e-406f-a0b3-0ddc2711b586", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:26 GMT", + "Date": "Fri, 15 Jan 2021 21:55:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "201" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "199" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -7287,25 +7451,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -7337,58 +7522,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "0e6d35884247a14036e4568b53516c83", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "486a0e35-3722-44c3-aa79-815e2f7ad015", + "apim-request-id": "727d63f2-d2df-446c-adb6-779ccc8c781c", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:28 GMT", + "Date": "Fri, 15 Jan 2021 21:55:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "223" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "206" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -7414,25 +7592,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -7464,58 +7663,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b337b81f6557865cd2b9b104f0d8c1fe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b44bb6bf-c1be-4b46-b39a-02a2f8a219f0", + "apim-request-id": "76ad0607-d57a-403f-beb7-9e12a4a219ab", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:29 GMT", + "Date": "Fri, 15 Jan 2021 21:55:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "169" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "243" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -7541,25 +7733,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -7591,58 +7804,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "8e3597ad18ad5a2f294c893e82980cd1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5b7308c9-eb01-4a4b-b5d4-9a436268be07", + "apim-request-id": "c8c4f99b-fe64-41f5-89fe-e463b88841e9", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:30 GMT", + "Date": "Fri, 15 Jan 2021 21:55:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "173" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "206" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -7668,25 +7874,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -7718,58 +7945,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c4e6b42cbbf3237fd9e63c8e903cb05d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2b6dc108-9743-484c-ba24-587b81fc7ec4", + "apim-request-id": "cc2b6512-463d-4053-8be8-99aebb559f9f", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:32 GMT", + "Date": "Fri, 15 Jan 2021 21:55:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "205" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "254" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -7795,25 +8015,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -7845,58 +8086,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "bbde5823dd1b06d688dc8a0adc1d0439", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e00b8a07-cc14-4122-9c59-81d330b7dde9", + "apim-request-id": "359969e9-f7d8-496f-8ff2-147f92becacf", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:33 GMT", + "Date": "Fri, 15 Jan 2021 21:55:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "175" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "241" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -7914,33 +8148,54 @@ "confidenceScore": 0.85 }, { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 } ], "warnings": [] } ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -7972,58 +8227,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "3bd8dfacfcf2f10b1812b5c6dba1caed", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8013cc1d-4ada-4e4a-9f68-32e4ec48e246", + "apim-request-id": "aa53e2a7-8928-43ec-aa7e-cafc80d58889", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:34 GMT", + "Date": "Fri, 15 Jan 2021 21:55:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "305" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "180" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -8049,25 +8297,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -8099,58 +8368,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "291b2b9b50ba4eb5dedf3b17317446bb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3b4f757c-18e1-41b5-88e2-1c22e40d211b", + "apim-request-id": "e7aea61a-2118-4b47-9fa5-9818b5e3fe6b", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:36 GMT", + "Date": "Fri, 15 Jan 2021 21:55:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "244" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "153" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -8176,25 +8438,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -8226,58 +8509,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b1e103e17564266b4deca309270f2ae7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "061743af-2ce8-477e-bac3-4ec23d24d6cf", + "apim-request-id": "87cf9496-215f-4565-856f-df4701c20629", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:37 GMT", + "Date": "Fri, 15 Jan 2021 21:55:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "194" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "177" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -8303,25 +8579,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -8353,58 +8650,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b16f9d12da015b7e29895d12c1f3c0a4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9bfefe73-bae5-442a-8f41-8a2dfe40d9d3", + "apim-request-id": "4fdb1684-60ba-49db-a7dc-7ec23be2e08e", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:39 GMT", + "Date": "Fri, 15 Jan 2021 21:55:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "210" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "298" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -8430,25 +8720,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -8480,58 +8791,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d8e5facb19bf2688bff5dccdadac26cf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2b2e5cf7-6833-4f82-a048-ff388be0b07c", + "apim-request-id": "65bfa528-9821-402f-88c4-dc0c55b522f7", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:40 GMT", + "Date": "Fri, 15 Jan 2021 21:55:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "163" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "188" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -8557,25 +8861,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -8607,58 +8932,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "940554b4950407ba848587da18586459", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a48f2a50-582e-43c9-aeb9-056b8c6699bb", + "apim-request-id": "0d44d1bc-9325-4d4d-80f3-f7b9fbc4bc7d", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:42 GMT", + "Date": "Fri, 15 Jan 2021 21:55:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "241" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "200" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -8684,25 +9002,46 @@ } ], "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -8734,58 +9073,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "2d3dff2c522af8271449f10bfeb0ad7d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fa962c2a-df6f-472f-920c-774065a2a452", + "apim-request-id": "158598de-71ea-4ab7-992a-907fd10bfef8", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:43 GMT", + "Date": "Fri, 15 Jan 2021 21:55:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "208" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "219" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -8811,25 +9143,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -8861,58 +9214,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "6c5e8d622cee359f40dd533991ad0e66", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cb77f131-1d8b-4ee9-8e05-c1ecb6f18deb", + "apim-request-id": "785daae3-6a84-441b-b5e4-9d306e288bc2", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:44 GMT", + "Date": "Fri, 15 Jan 2021 21:55:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "172" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "163" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -8938,25 +9284,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -8988,58 +9355,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "aea18390f96e61a52c0c7fbba3ae08d4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e44f1c29-d2cc-442d-87e2-23a024bcbbf5", + "apim-request-id": "6883dde3-62f3-43f4-aca2-bb0f517364be", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:46 GMT", + "Date": "Fri, 15 Jan 2021 21:55:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "284" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "247" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -9065,25 +9425,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -9115,58 +9496,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "8a7809d7f8fa006a5f07ed4cffed6766", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e8872886-8c62-4bff-a9e6-e99a50b58ae5", + "apim-request-id": "f42e6dc2-6eac-4c90-9c02-a7171b799a43", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:47 GMT", + "Date": "Fri, 15 Jan 2021 21:55:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "158" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "193" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -9192,25 +9566,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -9242,58 +9637,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "7b7b8b3bff0f690ee8fc3fe2ace49192", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "05ed4c0c-795f-4ba2-bd32-0a58f74f7eee", + "apim-request-id": "6fb374de-87d6-4f50-8fb4-53a016f93a05", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:48 GMT", + "Date": "Fri, 15 Jan 2021 21:55:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "222" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "232" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -9319,25 +9707,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -9369,58 +9778,51 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "88617fd58335986b18a14f670c58623f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cad31775-5042-43dd-9e42-afb04d1a77f6", + "apim-request-id": "dc634936-c187-4a95-8b71-fa90d85d439a", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:49 GMT", + "Date": "Fri, 15 Jan 2021 21:55:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "168" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "231" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -9446,25 +9848,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -9496,44 +9919,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000?showStats=false", + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "188018a58d32d8c5fb0ea1fdb887537b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "afa1dde4-1e2d-4290-8d3f-013fdcba62e3", + "apim-request-id": "a1c8871a-2391-489d-8a74-c23f023c1b44", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 17 Nov 2020 20:16:52 GMT", + "Date": "Fri, 15 Jan 2021 21:55:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "264" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "225" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "27a4b2c3-47fd-41c9-8c11-eaf641d17617_637411680000000000", - "lastUpdateDateTime": "2020-11-17T20:14:43Z", - "createdDateTime": "2020-11-17T20:14:42Z", - "expirationDateTime": "2020-11-18T20:14:42Z", + "jobId": "b75ec872-40fc-45b0-b0f1-ded6b45207e6_637462656000000000", + "lastUpdateDateTime": "2021-01-15T21:53:36Z", + "createdDateTime": "2021-01-15T21:53:35Z", + "expirationDateTime": "2021-01-16T21:53:35Z", "status": "succeeded", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43Z" + "lastUpdateDateTime": "2021-01-15T21:53:36Z" }, "completed": 3, "failed": 0, @@ -9542,7 +9959,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -9611,7 +10028,7 @@ "entityRecognitionPiiTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -9649,7 +10066,11 @@ "id": "2", "error": { "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" + "message": "Invalid Language Code.", + "innererror": { + "code": "UnsupportedLanguageCode", + "message": "Invalid language code. Supported languages: en" + } } } ], @@ -9660,7 +10081,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-17T20:14:43.6691381Z", + "lastUpdateDateTime": "2021-01-15T21:53:36.3412369Z", "results": { "inTerminalState": true, "documents": [ @@ -9695,6 +10116,6 @@ "Variables": { "RandomSeed": "1060404596", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" + "TEXT_ANALYTICS_ENDPOINT": "https://ta-s-westeurope.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithStringIndexType.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithStringIndexType.json new file mode 100644 index 0000000000000..9e0d6f1b11b70 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithStringIndexType.json @@ -0,0 +1,113 @@ +{ + "Entries": [ + { + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "87", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "3ce532848ef1593a724b88483868b7d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC68 Microsoft the company.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b8f761ab-e711-4718-9fd9-2b3eaf9a5a68", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", + "Date": "Fri, 15 Jan 2021 21:08:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "64" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 2, + "length": 9, + "confidenceScore": 0.48 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + }, + { + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "87", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "a760d50dc9425760caa02206e91df856", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC68 Microsoft the company.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9695a1ec-c4d8-4fee-b1b7-696ca56d5af6", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", + "Date": "Fri, 15 Jan 2021 21:08:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "75" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 3, + "length": 9, + "confidenceScore": 0.48 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": { + "RandomSeed": "915208052", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://ta-s-westeurope.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithStringIndexTypeAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithStringIndexTypeAsync.json new file mode 100644 index 0000000000000..a073440c3857b --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithStringIndexTypeAsync.json @@ -0,0 +1,113 @@ +{ + "Entries": [ + { + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "87", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "075a8f19b5e3b4a52035f275295bd0f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC68 Microsoft the company.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ebafcd7a-b076-4751-8408-0a0e63da7696", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", + "Date": "Fri, 15 Jan 2021 21:08:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "62" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 2, + "length": 9, + "confidenceScore": 0.48 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + }, + { + "RequestUri": "https://ta-s-westeurope.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "87", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20210115.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "7994e45afc1d302fc026b4788b38eca8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC68 Microsoft the company.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "51908cdb-ca6f-4d11-ac5f-fc1c051da180", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", + "Date": "Fri, 15 Jan 2021 21:08:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "87" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 3, + "length": 9, + "confidenceScore": 0.48 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": { + "RandomSeed": "93312888", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://ta-s-westeurope.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/TextAnalyticsClientLiveTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/TextAnalyticsClientLiveTests.cs index 463f215fd1b3b..89f387d196097 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/TextAnalyticsClientLiveTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/TextAnalyticsClientLiveTests.cs @@ -25,6 +25,27 @@ public async Task TextWithEmoji() Assert.AreEqual(3, entities.FirstOrDefault().Offset); } + [Test] + public async Task TextWithStringIndexType() + { + TextAnalyticsClient client = GetClient(); + string document = "👨 Microsoft the company."; + + RecognizeEntitiesResultCollection responseWithUnicodeCodePoint = await client.RecognizeEntitiesBatchAsync(new List() { document }, "en", new TextAnalyticsRequestOptions() { StringIndexType = StringIndexType.UnicodeCodePoint }); + RecognizeEntitiesResultCollection responseWithUtf16CodeUnit = await client.RecognizeEntitiesBatchAsync(new List() { document }, "en"); + + var entitiesWithUnicodeCodePoint = responseWithUnicodeCodePoint.FirstOrDefault().Entities; + var entitiesWithUtf16CodeUnit = responseWithUtf16CodeUnit.FirstOrDefault().Entities; + + Assert.AreEqual(1, entitiesWithUnicodeCodePoint.Count); + Assert.AreEqual("Microsoft", entitiesWithUnicodeCodePoint.FirstOrDefault().Text); + Assert.AreEqual(2, entitiesWithUnicodeCodePoint.FirstOrDefault().Offset); + + Assert.AreEqual(1, entitiesWithUtf16CodeUnit.Count); + Assert.AreEqual("Microsoft", entitiesWithUtf16CodeUnit.FirstOrDefault().Text); + Assert.AreEqual(3, entitiesWithUtf16CodeUnit.FirstOrDefault().Offset); + } + [Test] public async Task TextWithDiacriticsNFC() {