From f5e21d89f98089c5611e2d92549d64a3f6ceadb1 Mon Sep 17 00:00:00 2001 From: deyaaeldeen Date: Wed, 16 Sep 2020 17:02:10 -0400 Subject: [PATCH 1/4] [Text Analytics] Ignore Document Index --- .../src/analyzeSentimentResult.ts | 16 +++++++--------- .../src/analyzeSentimentResultArray.ts | 2 +- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/sdk/textanalytics/ai-text-analytics/src/analyzeSentimentResult.ts b/sdk/textanalytics/ai-text-analytics/src/analyzeSentimentResult.ts index eecca417632d..073b1ae8a133 100644 --- a/sdk/textanalytics/ai-text-analytics/src/analyzeSentimentResult.ts +++ b/sdk/textanalytics/ai-text-analytics/src/analyzeSentimentResult.ts @@ -14,7 +14,6 @@ import { SentenceSentiment as GeneratedSentenceSentiment, SentenceSentimentLabel, DocumentSentiment, - GeneratedClientSentimentResponse, SentenceAspect, AspectRelation, SentenceOpinion, @@ -142,9 +141,8 @@ export interface MinedOpinion { export type AnalyzeSentimentErrorResult = TextAnalyticsErrorResult; export function makeAnalyzeSentimentResult( - document: DocumentSentiment, - response: GeneratedClientSentimentResponse -): AnalyzeSentimentSuccessResult { + document: DocumentSentiment + ): AnalyzeSentimentSuccessResult { const { id, sentiment, @@ -157,7 +155,7 @@ export function makeAnalyzeSentimentResult( ...makeTextAnalyticsSuccessResult(id, warnings, statistics), sentiment, confidenceScores, - sentences: sentences.map((sentence) => convertGeneratedSentenceSentiment(sentence, response)) + sentences: sentences.map((sentence) => convertGeneratedSentenceSentiment(sentence, document)) }; } @@ -178,7 +176,7 @@ export function makeAnalyzeSentimentErrorResult( */ function convertGeneratedSentenceSentiment( sentence: GeneratedSentenceSentiment, - response: GeneratedClientSentimentResponse + document: DocumentSentiment ): SentenceSentiment { return { confidenceScores: sentence.confidenceScores, @@ -198,7 +196,7 @@ function convertGeneratedSentenceSentiment( }, opinions: aspect.relations .filter((relation) => relation.relationType === "opinion") - .map((relation) => convertAspectRelationToOpinionSentiment(relation, response)) + .map((relation) => convertAspectRelationToOpinionSentiment(relation, document)) }) ) : [] @@ -216,12 +214,12 @@ function convertGeneratedSentenceSentiment( */ function convertAspectRelationToOpinionSentiment( aspectRelation: AspectRelation, - response: GeneratedClientSentimentResponse + document: DocumentSentiment ): OpinionSentiment { const opinionPtr = aspectRelation.ref; const opinionIndex: OpinionIndex = findOpinionIndex(opinionPtr); const opinion: SentenceOpinion | undefined = - response.documents?.[opinionIndex.document].sentenceSentiments?.[opinionIndex.sentence] + document.sentenceSentiments?.[opinionIndex.sentence] .opinions?.[opinionIndex.opinion]; if (opinion !== undefined) { return opinion; diff --git a/sdk/textanalytics/ai-text-analytics/src/analyzeSentimentResultArray.ts b/sdk/textanalytics/ai-text-analytics/src/analyzeSentimentResultArray.ts index f136b406e114..3083485fa75b 100644 --- a/sdk/textanalytics/ai-text-analytics/src/analyzeSentimentResultArray.ts +++ b/sdk/textanalytics/ai-text-analytics/src/analyzeSentimentResultArray.ts @@ -39,7 +39,7 @@ export function makeAnalyzeSentimentResultArray( const unsortedResult = documents .map( (document): AnalyzeSentimentResult => { - return makeAnalyzeSentimentResult(document, response); + return makeAnalyzeSentimentResult(document); } ) .concat( From d5614ef5713421222ba259d26093ddcdd078693e Mon Sep 17 00:00:00 2001 From: deyaaeldeen Date: Wed, 16 Sep 2020 17:08:02 -0400 Subject: [PATCH 2/4] adding a test --- .../src/analyzeSentimentResult.ts | 5 ++--- .../test/textAnalyticsClient.spec.ts | 20 +++++++++++++++++++ 2 files changed, 22 insertions(+), 3 deletions(-) diff --git a/sdk/textanalytics/ai-text-analytics/src/analyzeSentimentResult.ts b/sdk/textanalytics/ai-text-analytics/src/analyzeSentimentResult.ts index 073b1ae8a133..30b76d6d9ce2 100644 --- a/sdk/textanalytics/ai-text-analytics/src/analyzeSentimentResult.ts +++ b/sdk/textanalytics/ai-text-analytics/src/analyzeSentimentResult.ts @@ -142,7 +142,7 @@ export type AnalyzeSentimentErrorResult = TextAnalyticsErrorResult; export function makeAnalyzeSentimentResult( document: DocumentSentiment - ): AnalyzeSentimentSuccessResult { +): AnalyzeSentimentSuccessResult { const { id, sentiment, @@ -219,8 +219,7 @@ function convertAspectRelationToOpinionSentiment( const opinionPtr = aspectRelation.ref; const opinionIndex: OpinionIndex = findOpinionIndex(opinionPtr); const opinion: SentenceOpinion | undefined = - document.sentenceSentiments?.[opinionIndex.sentence] - .opinions?.[opinionIndex.opinion]; + document.sentenceSentiments?.[opinionIndex.sentence].opinions?.[opinionIndex.opinion]; if (opinion !== undefined) { return opinion; } else { diff --git a/sdk/textanalytics/ai-text-analytics/test/textAnalyticsClient.spec.ts b/sdk/textanalytics/ai-text-analytics/test/textAnalyticsClient.spec.ts index 4333fa87d880..262bbc3ad79e 100644 --- a/sdk/textanalytics/ai-text-analytics/test/textAnalyticsClient.spec.ts +++ b/sdk/textanalytics/ai-text-analytics/test/textAnalyticsClient.spec.ts @@ -77,6 +77,26 @@ describe("[AAD] TextAnalyticsClient", function() { assert.equal(result.error.code, "UnsupportedLanguageCode"); }); + it("service has a bug when referencing opinions in doc #6 or greater", async () => { + const documents = [ + "The food was unacceptable", + "The rooms were beautiful. The AC was good and quiet.", + "The breakfast was good, but the toilet was smelly.", + "Loved this hotel - good breakfast - nice shuttle service - clean rooms.", + "I had a great unobstructed view of the Microsoft campus.", + "Nice rooms but bathrooms were old and the toilet was dirty when we arrived.", + "The toilet smelled." + ]; + const results = await client.analyzeSentiment(documents, "en", { + includeOpinionMining: true + }); + const result1 = results[0]; + const result2 = results[5]; + if (result1.error === undefined && result2.error === undefined) { + assert.notEqual(result1.sentences[0].minedOpinions[0].opinions[0], result2.sentences[0].minedOpinions[0].opinions[0]); + } + }); + it("service returns an error for an empty document", async () => { const data = [...testDataEn]; data.splice(1, 0, ""); From b29a23b53354ac2ab9f71ee918a995b3ed17c47c Mon Sep 17 00:00:00 2001 From: deyaaeldeen Date: Thu, 17 Sep 2020 13:45:59 -0400 Subject: [PATCH 3/4] update tests --- .../test/textAnalyticsClient.spec.ts | 35 ++++++++++++++++--- 1 file changed, 30 insertions(+), 5 deletions(-) diff --git a/sdk/textanalytics/ai-text-analytics/test/textAnalyticsClient.spec.ts b/sdk/textanalytics/ai-text-analytics/test/textAnalyticsClient.spec.ts index 262bbc3ad79e..8e8d1aea6056 100644 --- a/sdk/textanalytics/ai-text-analytics/test/textAnalyticsClient.spec.ts +++ b/sdk/textanalytics/ai-text-analytics/test/textAnalyticsClient.spec.ts @@ -13,7 +13,10 @@ import { DetectLanguageSuccessResult, ExtractKeyPhrasesSuccessResult, AnalyzeSentimentResultArray, - AnalyzeSentimentSuccessResult + AnalyzeSentimentSuccessResult, + SentenceSentiment, + MinedOpinion, + OpinionSentiment } from "../src/index"; import { assertAllSuccess, isSuccess } from "./utils/resultHelper"; import { PiiEntityDomainType } from "../src/textAnalyticsClient"; @@ -86,14 +89,36 @@ describe("[AAD] TextAnalyticsClient", function() { "I had a great unobstructed view of the Microsoft campus.", "Nice rooms but bathrooms were old and the toilet was dirty when we arrived.", "The toilet smelled." - ]; + ]; const results = await client.analyzeSentiment(documents, "en", { includeOpinionMining: true }); const result1 = results[0]; - const result2 = results[5]; - if (result1.error === undefined && result2.error === undefined) { - assert.notEqual(result1.sentences[0].minedOpinions[0].opinions[0], result2.sentences[0].minedOpinions[0].opinions[0]); + const result6 = results[5]; + const result7 = results[6]; + if ( + result1.error === undefined && + result6.error === undefined && + result7.error === undefined + ) { + const opinion1 = result1.sentences[0].minedOpinions[0].opinions[0]; + const opinion2 = result6.sentences[0].minedOpinions[0].opinions[0]; + assert.notDeepEqual(opinion1, opinion2); + + const listAllOpinions = (acc: string[], sentence: SentenceSentiment): string[] => + acc.concat( + sentence.minedOpinions.reduce( + (acc: string[], aspect: MinedOpinion) => + acc.concat(aspect.opinions.map((opinion: OpinionSentiment) => opinion.text)), + [] + ) + ); + const allOpinions1 = result1.sentences.reduce(listAllOpinions, []); + assert.deepEqual(allOpinions1, ["unacceptable"]); + const allOpinions2 = result6.sentences.reduce(listAllOpinions, []); + assert.deepEqual(allOpinions2, ["nice", "old", "dirty"]); + const allOpinions7 = result7.sentences.reduce(listAllOpinions, []); + assert.deepEqual(allOpinions7, ["smelled"]); } }); From c8032a2ce89c9e34991f1b142a4bb1b8459ef6e1 Mon Sep 17 00:00:00 2001 From: deyaaeldeen Date: Thu, 17 Sep 2020 13:46:08 -0400 Subject: [PATCH 4/4] add recordings --- ...ng_client_accepts_string_and_language.json | 10 ++-- ...lient_accepts_string_with_no_language.json | 10 ++-- ...ding_client_accepts_textdocumentinput.json | 10 ++-- ...g_client_gets_negative_mined_opinions.json | 10 ++-- ...cording_client_gets_no_mined_opinions.json | 10 ++-- ...g_client_gets_positive_mined_opinions.json | 10 ++-- ...erencing_opinions_in_doc_6_or_greater.json | 52 ++++++++++++++++ ...eturns_an_error_for_an_empty_document.json | 10 ++-- ...ce_returns_error_for_invalid_language.json | 10 ++-- ...ecording_client_accepts_a_countryhint.json | 10 ++-- ...epts_mixedcountry_detectlanguageinput.json | 10 ++-- ...cording_client_accepts_no_countryhint.json | 10 ++-- ...y_hint_with_detectlanguageinput_input.json | 10 ++-- ...s_none_country_hint_with_string_input.json | 10 ++-- ...ervice_errors_on_invalid_country_hint.json | 10 ++-- ...cepts_mixedlanguage_textdocumentinput.json | 10 ++-- ...epts_string_with_a_language_specified.json | 10 ++-- ...lient_accepts_string_with_no_language.json | 8 +-- ...ervice_errors_on_unsupported_language.json | 10 ++-- ...ervice_reports_warning_for_long_words.json | 10 ++-- ...cepts_mixedlanguage_textdocumentinput.json | 10 ++-- ...epts_string_with_a_language_specified.json | 10 ++-- ...lient_accepts_string_with_no_language.json | 10 ++-- ..._throws_exception_for_too_many_inputs.json | 10 ++-- ...ervice_errors_on_unsupported_language.json | 10 ++-- ...cepts_mixedlanguage_textdocumentinput.json | 10 ++-- ...epts_string_with_a_language_specified.json | 10 ++-- ...lient_accepts_string_with_no_language.json | 10 ++-- ..._throws_exception_for_too_many_inputs.json | 10 ++-- ...ervice_errors_on_unsupported_language.json | 8 +-- .../recording_accepts_domain_filter.json | 10 ++-- ...cepts_mixedlanguage_textdocumentinput.json | 10 ++-- ...epts_string_with_a_language_specified.json | 10 ++-- ...lient_accepts_string_with_no_language.json | 10 ++-- ...eports_recognition_of_piilike_pattern.json | 10 ++-- ...recording_client_throws_on_empty_list.json | 10 ++-- ...ervice_errors_on_unsupported_language.json | 8 +-- .../recording_diacritics_nfc.json | 10 ++-- .../recording_diacritics_nfd.json | 10 ++-- .../recording_emoji.json | 10 ++-- ...cording_emoji_with_skin_tone_modifier.json | 10 ++-- .../recording_family_emoji.json | 10 ++-- ...g_family_emoji_wit_skin_tone_modifier.json | 10 ++-- .../recording_korean_nfc.json | 10 ++-- .../recording_korean_nfd.json | 10 ++-- .../recording_zalgo.json | 10 ++-- .../recording_analyzesentiment.json | 6 +- .../recording_detectlanguage.json | 6 +- .../recording_extractkeyphrases.json | 6 +- .../recording_recognizeentities.json | 6 +- .../recording_recognizelinkedentities.json | 6 +- .../recording_recognizepiientities.json | 6 +- ...ding_client_accepts_string_and_language.js | 16 ++--- ..._client_accepts_string_with_no_language.js | 16 ++--- ...ording_client_accepts_textdocumentinput.js | 12 ++-- ...ing_client_gets_negative_mined_opinions.js | 12 ++-- ...recording_client_gets_no_mined_opinions.js | 12 ++-- ...ing_client_gets_positive_mined_opinions.js | 12 ++-- ...eferencing_opinions_in_doc_6_or_greater.js | 60 +++++++++++++++++++ ..._returns_an_error_for_an_empty_document.js | 12 ++-- ...vice_returns_error_for_invalid_language.js | 14 ++--- .../recording_client_accepts_a_countryhint.js | 12 ++-- ...ccepts_mixedcountry_detectlanguageinput.js | 16 ++--- ...recording_client_accepts_no_countryhint.js | 16 ++--- ...try_hint_with_detectlanguageinput_input.js | 12 ++-- ...pts_none_country_hint_with_string_input.js | 12 ++-- ..._service_errors_on_invalid_country_hint.js | 16 ++--- ...accepts_mixedlanguage_textdocumentinput.js | 16 ++--- ...ccepts_string_with_a_language_specified.js | 12 ++-- ..._client_accepts_string_with_no_language.js | 12 ++-- ..._service_errors_on_unsupported_language.js | 16 ++--- ..._service_reports_warning_for_long_words.js | 16 ++--- ...accepts_mixedlanguage_textdocumentinput.js | 16 ++--- ...ccepts_string_with_a_language_specified.js | 16 ++--- ..._client_accepts_string_with_no_language.js | 12 ++-- ...nt_throws_exception_for_too_many_inputs.js | 12 ++-- ..._service_errors_on_unsupported_language.js | 10 ++-- ...accepts_mixedlanguage_textdocumentinput.js | 16 ++--- ...ccepts_string_with_a_language_specified.js | 16 ++--- ..._client_accepts_string_with_no_language.js | 12 ++-- ...nt_throws_exception_for_too_many_inputs.js | 16 ++--- ..._service_errors_on_unsupported_language.js | 16 ++--- .../recording_accepts_domain_filter.js | 16 ++--- ...accepts_mixedlanguage_textdocumentinput.js | 16 ++--- ...ccepts_string_with_a_language_specified.js | 16 ++--- ..._client_accepts_string_with_no_language.js | 16 ++--- ..._reports_recognition_of_piilike_pattern.js | 16 ++--- .../recording_client_throws_on_empty_list.js | 12 ++-- ..._service_errors_on_unsupported_language.js | 12 ++-- .../recording_diacritics_nfc.js | 16 ++--- .../recording_diacritics_nfd.js | 12 ++-- .../recording_emoji.js | 12 ++-- ...recording_emoji_with_skin_tone_modifier.js | 12 ++-- .../recording_family_emoji.js | 16 ++--- ...ing_family_emoji_wit_skin_tone_modifier.js | 16 ++--- .../recording_korean_nfc.js | 16 ++--- .../recording_korean_nfd.js | 16 ++--- .../recording_zalgo.js | 12 ++-- .../recording_analyzesentiment.js | 6 +- .../recording_detectlanguage.js | 6 +- .../recording_extractkeyphrases.js | 6 +- .../recording_recognizeentities.js | 6 +- .../recording_recognizelinkedentities.js | 6 +- .../recording_recognizepiientities.js | 6 +- 104 files changed, 688 insertions(+), 576 deletions(-) create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_service_has_a_bug_when_referencing_opinions_in_doc_6_or_greater.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_service_has_a_bug_when_referencing_opinions_in_doc_6_or_greater.js diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_client_accepts_string_and_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_client_accepts_string_and_language.json index ad0bed3f053f..6feeb4574182 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_client_accepts_string_and_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_client_accepts_string_and_language.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:33 GMT", + "date": "Thu, 17 Sep 2020 17:45:10 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "1ff0f1ff-de32-4293-b40e-0682ed209a00" + "x-ms-request-id": "5629c388-e78c-4815-8705-d6477d282000" } }, { @@ -32,14 +32,14 @@ "status": 200, "response": "{\"documents\":[{\"id\":\"0\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.99,\"neutral\":0.01,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.99,\"neutral\":0.01,\"negative\":0.0},\"offset\":0,\"length\":86,\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\"}],\"warnings\":[]},{\"id\":\"1\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"offset\":0,\"length\":58,\"text\":\"Unfortunately, it rained during my entire trip to Seattle.\"},{\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.7,\"negative\":0.29},\"offset\":59,\"length\":43,\"text\":\"I didn't even get to visit the Space Needle\"}],\"warnings\":[]},{\"id\":\"2\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":101,\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\"}],\"warnings\":[]},{\"id\":\"3\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.03,\"negative\":0.96},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.03,\"negative\":0.96},\"offset\":0,\"length\":42,\"text\":\"I didn't like the last book I read at all.\"}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}", "responseHeaders": { - "apim-request-id": "8057aea2-cafd-47aa-9b64-1b88f16f1a05", + "apim-request-id": "d956adf5-49f5-46ed-8a0a-e201fc7854bc", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "date": "Wed, 16 Sep 2020 19:21:32 GMT", + "date": "Thu, 17 Sep 2020 17:45:09 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "87" + "x-envoy-upstream-service-time": "98" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_client_accepts_string_with_no_language.json index 1bc240c6380d..fbc4dcf361ed 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_client_accepts_string_with_no_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_client_accepts_string_with_no_language.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:33 GMT", + "date": "Thu, 17 Sep 2020 17:45:10 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "9c84129b-b4c4-45ae-bd5c-3e6962005300" + "x-ms-request-id": "deea40e1-5248-4c5d-99f8-c50e3fcd2100" } }, { @@ -32,14 +32,14 @@ "status": 200, "response": "{\"documents\":[{\"id\":\"0\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.99,\"neutral\":0.01,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.99,\"neutral\":0.01,\"negative\":0.0},\"offset\":0,\"length\":86,\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\"}],\"warnings\":[]},{\"id\":\"1\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"offset\":0,\"length\":58,\"text\":\"Unfortunately, it rained during my entire trip to Seattle.\"},{\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.7,\"negative\":0.29},\"offset\":59,\"length\":43,\"text\":\"I didn't even get to visit the Space Needle\"}],\"warnings\":[]},{\"id\":\"2\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":101,\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\"}],\"warnings\":[]},{\"id\":\"3\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.03,\"negative\":0.96},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.03,\"negative\":0.96},\"offset\":0,\"length\":42,\"text\":\"I didn't like the last book I read at all.\"}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}", "responseHeaders": { - "apim-request-id": "e0f031d8-d511-41f7-9df7-26c67b30ee62", + "apim-request-id": "b6d1eaa1-b33f-43d9-ac25-535d59415dcb", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "date": "Wed, 16 Sep 2020 19:21:34 GMT", + "date": "Thu, 17 Sep 2020 17:45:09 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "80" + "x-envoy-upstream-service-time": "99" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_client_accepts_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_client_accepts_textdocumentinput.json index 0e5620820328..67cf29d3d340 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_client_accepts_textdocumentinput.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_client_accepts_textdocumentinput.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:34 GMT", + "date": "Thu, 17 Sep 2020 17:45:11 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "bb6bde29-41e7-414c-9b0a-43c103466000" + "x-ms-request-id": "e4c3ae9e-9095-46f9-bc52-511beb2e7700" } }, { @@ -32,14 +32,14 @@ "status": 200, "response": "{\"documents\":[{\"id\":\"1\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.99,\"neutral\":0.01,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.99,\"neutral\":0.01,\"negative\":0.0},\"offset\":0,\"length\":86,\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\"}],\"warnings\":[]},{\"id\":\"2\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"offset\":0,\"length\":58,\"text\":\"Unfortunately, it rained during my entire trip to Seattle.\"},{\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.7,\"negative\":0.29},\"offset\":59,\"length\":43,\"text\":\"I didn't even get to visit the Space Needle\"}],\"warnings\":[]},{\"id\":\"3\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":101,\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\"}],\"warnings\":[]},{\"id\":\"4\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.03,\"negative\":0.96},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.03,\"negative\":0.96},\"offset\":0,\"length\":42,\"text\":\"I didn't like the last book I read at all.\"}],\"warnings\":[]},{\"id\":\"5\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.89,\"neutral\":0.08,\"negative\":0.03},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.89,\"neutral\":0.08,\"negative\":0.03},\"offset\":0,\"length\":73,\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\"}],\"warnings\":[]},{\"id\":\"6\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.11,\"neutral\":0.29,\"negative\":0.6},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.11,\"neutral\":0.29,\"negative\":0.6},\"offset\":0,\"length\":29,\"text\":\"La carretera estaba atascada.\"},{\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.09,\"neutral\":0.58,\"negative\":0.33},\"offset\":30,\"length\":35,\"text\":\"Había mucho tráfico el día de ayer.\"}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}", "responseHeaders": { - "apim-request-id": "dfda7ba5-873c-4481-b88a-82e82c235e44", + "apim-request-id": "b176523a-f9cb-4544-b7c2-572a54e13290", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6", - "date": "Wed, 16 Sep 2020 19:21:34 GMT", + "date": "Thu, 17 Sep 2020 17:45:11 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "360" + "x-envoy-upstream-service-time": "149" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_client_gets_negative_mined_opinions.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_client_gets_negative_mined_opinions.json index 5bfd25f1cc0b..10c84544a752 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_client_gets_negative_mined_opinions.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_client_gets_negative_mined_opinions.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:35 GMT", + "date": "Thu, 17 Sep 2020 17:45:12 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "98aca583-a30b-4f72-baa4-bd211e9ba100" + "x-ms-request-id": "3f22c23f-60ef-452f-9592-d8105fa91c00" } }, { @@ -33,14 +33,14 @@ "status": 200, "response": "{\"documents\":[{\"id\":\"0\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"offset\":0,\"length\":32,\"text\":\"The food and service is not good\",\"aspects\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":4,\"length\":4,\"text\":\"food\",\"relations\":[{\"relationType\":\"opinion\",\"ref\":\"#/documents/0/sentences/0/opinions/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":13,\"length\":7,\"text\":\"service\",\"relations\":[{\"relationType\":\"opinion\",\"ref\":\"#/documents/0/sentences/0/opinions/0\"}]}],\"opinions\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":28,\"length\":4,\"text\":\"good\",\"isNegated\":true}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}", "responseHeaders": { - "apim-request-id": "f919c0bc-bf2e-41a1-ad9c-8ba519c1dad8", + "apim-request-id": "3db07e86-044c-45fc-b960-eb2aea5a174d", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "date": "Wed, 16 Sep 2020 19:21:35 GMT", + "date": "Thu, 17 Sep 2020 17:45:11 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "77" + "x-envoy-upstream-service-time": "137" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_client_gets_no_mined_opinions.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_client_gets_no_mined_opinions.json index 32b35d9e0d21..cfdfefbcbb91 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_client_gets_no_mined_opinions.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_client_gets_no_mined_opinions.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:35 GMT", + "date": "Thu, 17 Sep 2020 17:45:12 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "d7aab36d-9b0b-4fb6-ab71-aa066a069b00" + "x-ms-request-id": "5de8a399-1bda-4a99-a0ec-46c2e42b2500" } }, { @@ -33,14 +33,14 @@ "status": 200, "response": "{\"documents\":[{\"id\":\"0\",\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.1,\"neutral\":0.88,\"negative\":0.02},\"sentences\":[{\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.1,\"neutral\":0.88,\"negative\":0.02},\"offset\":0,\"length\":18,\"text\":\"today is a hot day\",\"aspects\":[],\"opinions\":[]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}", "responseHeaders": { - "apim-request-id": "8560c7e3-9d03-4bd4-ac60-d35e1e7fba52", + "apim-request-id": "8d850d42-efd8-4aaa-b997-254fcb8c0cc1", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "date": "Wed, 16 Sep 2020 19:21:35 GMT", + "date": "Thu, 17 Sep 2020 17:45:12 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "269" + "x-envoy-upstream-service-time": "143" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_client_gets_positive_mined_opinions.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_client_gets_positive_mined_opinions.json index a28f7d34bee8..f6261d77eb2f 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_client_gets_positive_mined_opinions.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_client_gets_positive_mined_opinions.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:34 GMT", + "date": "Thu, 17 Sep 2020 17:45:11 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "1001ac0d-e6be-43e8-870e-c3ccc9ad8900" + "x-ms-request-id": "04b0b7b1-ab7b-41d5-80d1-dec9ab919a00" } }, { @@ -33,14 +33,14 @@ "status": 200, "response": "{\"documents\":[{\"id\":\"0\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.98,\"neutral\":0.02,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.98,\"neutral\":0.02,\"negative\":0.0},\"offset\":0,\"length\":74,\"text\":\"It has a sleek premium aluminum design that makes it beautiful to look at.\",\"aspects\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":32,\"length\":6,\"text\":\"design\",\"relations\":[{\"relationType\":\"opinion\",\"ref\":\"#/documents/0/sentences/0/opinions/0\"},{\"relationType\":\"opinion\",\"ref\":\"#/documents/0/sentences/0/opinions/1\"}]}],\"opinions\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":9,\"length\":5,\"text\":\"sleek\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":15,\"length\":7,\"text\":\"premium\",\"isNegated\":false}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}", "responseHeaders": { - "apim-request-id": "748ccf4d-ed99-43fc-b8e2-c27308a63c38", + "apim-request-id": "a0609f28-fc57-4643-ba13-7263977ba8cd", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "date": "Wed, 16 Sep 2020 19:21:35 GMT", + "date": "Thu, 17 Sep 2020 17:45:11 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "86" + "x-envoy-upstream-service-time": "96" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_service_has_a_bug_when_referencing_opinions_in_doc_6_or_greater.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_service_has_a_bug_when_referencing_opinions_in_doc_6_or_greater.json new file mode 100644 index 000000000000..5062db3ab86d --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_service_has_a_bug_when_referencing_opinions_in_doc_6_or_greater.json @@ -0,0 +1,52 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://login.microsoftonline.com/azure_tenant_id/oauth2/v2.0/token", + "query": {}, + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":3599,\"ext_expires_in\":3599,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1329", + "content-type": "application/json; charset=utf-8", + "date": "Thu, 17 Sep 2020 17:45:10 GMT", + "expires": "-1", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", + "x-ms-request-id": "50e64afc-14d5-4994-a523-66ccd35a3400" + } + }, + { + "method": "POST", + "url": "https://endpoint/text/analytics/v3.1-preview.2/sentiment", + "query": { + "stringIndexType": "Utf16CodeUnit", + "opinionMining": "true" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"The food was unacceptable\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"The rooms were beautiful. The AC was good and quiet.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"The breakfast was good, but the toilet was smelly.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"Loved this hotel - good breakfast - nice shuttle service - clean rooms.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"I had a great unobstructed view of the Microsoft campus.\",\"language\":\"en\"},{\"id\":\"5\",\"text\":\"Nice rooms but bathrooms were old and the toilet was dirty when we arrived.\",\"language\":\"en\"},{\"id\":\"6\",\"text\":\"The toilet smelled.\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"id\":\"0\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"offset\":0,\"length\":25,\"text\":\"The food was unacceptable\",\"aspects\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":4,\"length\":4,\"text\":\"food\",\"relations\":[{\"relationType\":\"opinion\",\"ref\":\"#/documents/0/sentences/0/opinions/0\"}]}],\"opinions\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":13,\"length\":12,\"text\":\"unacceptable\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"1\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":25,\"text\":\"The rooms were beautiful.\",\"aspects\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":4,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"opinion\",\"ref\":\"#/documents/1/sentences/0/opinions/0\"}]}],\"opinions\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":15,\"length\":9,\"text\":\"beautiful\",\"isNegated\":false}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":26,\"length\":26,\"text\":\"The AC was good and quiet.\",\"aspects\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":30,\"length\":2,\"text\":\"AC\",\"relations\":[{\"relationType\":\"opinion\",\"ref\":\"#/documents/1/sentences/1/opinions/0\"},{\"relationType\":\"opinion\",\"ref\":\"#/documents/1/sentences/1/opinions/1\"}]}],\"opinions\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":37,\"length\":4,\"text\":\"good\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":46,\"length\":5,\"text\":\"quiet\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"2\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.0,\"negative\":0.99},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.0,\"negative\":0.99},\"offset\":0,\"length\":50,\"text\":\"The breakfast was good, but the toilet was smelly.\",\"aspects\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":4,\"length\":9,\"text\":\"breakfast\",\"relations\":[{\"relationType\":\"opinion\",\"ref\":\"#/documents/2/sentences/0/opinions/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":32,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"opinion\",\"ref\":\"#/documents/2/sentences/0/opinions/1\"}]}],\"opinions\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":18,\"length\":4,\"text\":\"good\",\"isNegated\":false},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":43,\"length\":6,\"text\":\"smelly\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"3\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":71,\"text\":\"Loved this hotel - good breakfast - nice shuttle service - clean rooms.\",\"aspects\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":11,\"length\":5,\"text\":\"hotel\",\"relations\":[{\"relationType\":\"opinion\",\"ref\":\"#/documents/3/sentences/0/opinions/0\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":24,\"length\":9,\"text\":\"breakfast\",\"relations\":[{\"relationType\":\"opinion\",\"ref\":\"#/documents/3/sentences/0/opinions/1\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":41,\"length\":15,\"text\":\"shuttle service\",\"relations\":[{\"relationType\":\"opinion\",\"ref\":\"#/documents/3/sentences/0/opinions/2\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":65,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"opinion\",\"ref\":\"#/documents/3/sentences/0/opinions/0\"},{\"relationType\":\"opinion\",\"ref\":\"#/documents/3/sentences/0/opinions/1\"},{\"relationType\":\"opinion\",\"ref\":\"#/documents/3/sentences/0/opinions/3\"},{\"relationType\":\"opinion\",\"ref\":\"#/documents/3/sentences/0/opinions/2\"}]}],\"opinions\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":19,\"length\":4,\"text\":\"good\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":36,\"length\":4,\"text\":\"nice\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":0,\"length\":5,\"text\":\"loved\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":59,\"length\":5,\"text\":\"clean\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"4\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":56,\"text\":\"I had a great unobstructed view of the Microsoft campus.\",\"aspects\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.97,\"negative\":0.03},\"offset\":27,\"length\":4,\"text\":\"view\",\"relations\":[{\"relationType\":\"opinion\",\"ref\":\"#/documents/4/sentences/0/opinions/0\"},{\"relationType\":\"opinion\",\"ref\":\"#/documents/4/sentences/0/opinions/1\"}]}],\"opinions\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":8,\"length\":5,\"text\":\"great\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.93,\"negative\":0.07},\"offset\":14,\"length\":12,\"text\":\"unobstructed\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"5\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"offset\":0,\"length\":75,\"text\":\"Nice rooms but bathrooms were old and the toilet was dirty when we arrived.\",\"aspects\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":5,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"opinion\",\"ref\":\"#/documents/0/sentences/0/opinions/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":15,\"length\":9,\"text\":\"bathrooms\",\"relations\":[{\"relationType\":\"opinion\",\"ref\":\"#/documents/0/sentences/0/opinions/1\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":42,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"opinion\",\"ref\":\"#/documents/0/sentences/0/opinions/2\"}]}],\"opinions\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":0,\"length\":4,\"text\":\"nice\",\"isNegated\":false},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":30,\"length\":3,\"text\":\"old\",\"isNegated\":false},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":53,\"length\":5,\"text\":\"dirty\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"6\",\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.03,\"neutral\":0.63,\"negative\":0.34},\"sentences\":[{\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.03,\"neutral\":0.63,\"negative\":0.34},\"offset\":0,\"length\":19,\"text\":\"The toilet smelled.\",\"aspects\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":4,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"opinion\",\"ref\":\"#/documents/1/sentences/0/opinions/0\"}]}],\"opinions\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":11,\"length\":7,\"text\":\"smelled\",\"isNegated\":false}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}", + "responseHeaders": { + "apim-request-id": "632a87f1-f73f-4b2d-91b4-5321cab72feb", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=7", + "date": "Thu, 17 Sep 2020 17:45:10 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "108" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "20541549270be25b59b5dcdd3deb3517" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.json index a9c4e8992ffa..77eea1a9a626 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:34 GMT", + "date": "Thu, 17 Sep 2020 17:45:11 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "fa2b50e4-8c42-44e0-975d-506d5af09700" + "x-ms-request-id": "a48aeec4-d74f-448f-bd76-9ac641677a00" } }, { @@ -32,14 +32,14 @@ "status": 200, "response": "{\"documents\":[{\"id\":\"0\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.99,\"neutral\":0.01,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.99,\"neutral\":0.01,\"negative\":0.0},\"offset\":0,\"length\":86,\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\"}],\"warnings\":[]},{\"id\":\"2\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"offset\":0,\"length\":58,\"text\":\"Unfortunately, it rained during my entire trip to Seattle.\"},{\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.7,\"negative\":0.29},\"offset\":59,\"length\":43,\"text\":\"I didn't even get to visit the Space Needle\"}],\"warnings\":[]},{\"id\":\"3\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":101,\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\"}],\"warnings\":[]},{\"id\":\"4\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.03,\"negative\":0.96},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.03,\"negative\":0.96},\"offset\":0,\"length\":42,\"text\":\"I didn't like the last book I read at all.\"}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2020-04-01\"}", "responseHeaders": { - "apim-request-id": "df6557d0-5522-4bb0-9d22-3671ac9283c1", + "apim-request-id": "c78552ab-fa47-4033-9acf-6afa30a806c3", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "date": "Wed, 16 Sep 2020 19:21:34 GMT", + "date": "Thu, 17 Sep 2020 17:45:10 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "96" + "x-envoy-upstream-service-time": "114" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_service_returns_error_for_invalid_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_service_returns_error_for_invalid_language.json index 238ad2593e31..4fe4d0901dd7 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_service_returns_error_for_invalid_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_analyzesentiment/recording_service_returns_error_for_invalid_language.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:33 GMT", + "date": "Thu, 17 Sep 2020 17:45:10 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "926a95da-556d-41d8-b035-8de64cba9800" + "x-ms-request-id": "e3400980-d6d6-443a-bab2-07b6b0202400" } }, { @@ -32,13 +32,13 @@ "status": 200, "response": "{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: de,en,es,fr,it,ja,ko,nl,no,pt-PT,tr,zh-Hans,zh-Hant\"}}}],\"modelVersion\":\"2020-04-01\"}", "responseHeaders": { - "apim-request-id": "82d51e0c-0956-4533-a5c0-e501db2252e5", + "apim-request-id": "00eaa603-de07-483c-9868-a05d9affb8fd", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:34 GMT", + "date": "Thu, 17 Sep 2020 17:45:10 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "3" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_detectlanguage/recording_client_accepts_a_countryhint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_detectlanguage/recording_client_accepts_a_countryhint.json index 177d883f41fc..9e4ea3ba5062 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_detectlanguage/recording_client_accepts_a_countryhint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_detectlanguage/recording_client_accepts_a_countryhint.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:36 GMT", + "date": "Thu, 17 Sep 2020 17:45:13 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "12398f91-493f-4f99-87e2-f449dc945f00" + "x-ms-request-id": "e4c3ae9e-9095-46f9-bc52-511b212f7700" } }, { @@ -30,14 +30,14 @@ "status": 200, "response": "{\"documents\":[{\"id\":\"0\",\"detectedLanguage\":{\"name\":\"French\",\"iso6391Name\":\"fr\",\"confidenceScore\":1.0},\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}", "responseHeaders": { - "apim-request-id": "21b1337b-ccee-41bd-b6cd-eed2ae495c1e", + "apim-request-id": "60b8faef-cd24-4646-92d8-1ee340884c12", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "date": "Wed, 16 Sep 2020 19:21:36 GMT", + "date": "Thu, 17 Sep 2020 17:45:12 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "10" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.json index b8e17c471f75..a67c16ef1796 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:36 GMT", + "date": "Thu, 17 Sep 2020 17:45:13 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "d7aab36d-9b0b-4fb6-ab71-aa06b5069b00" + "x-ms-request-id": "7852a787-e39d-4cbd-8179-80f8c55f7300" } }, { @@ -30,14 +30,14 @@ "status": 200, "response": "{\"documents\":[{\"id\":\"1\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"2\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"3\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"4\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"5\",\"detectedLanguage\":{\"name\":\"Spanish\",\"iso6391Name\":\"es\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"6\",\"detectedLanguage\":{\"name\":\"Spanish\",\"iso6391Name\":\"es\",\"confidenceScore\":1.0},\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}", "responseHeaders": { - "apim-request-id": "1e08ba8e-e069-4517-a1c8-e15fbf4a92a7", + "apim-request-id": "7dea9edf-0634-4825-b298-2b59b911263d", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6", - "date": "Wed, 16 Sep 2020 19:21:36 GMT", + "date": "Thu, 17 Sep 2020 17:45:13 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "15" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_detectlanguage/recording_client_accepts_no_countryhint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_detectlanguage/recording_client_accepts_no_countryhint.json index bd7d5cd3eeee..553812552c2d 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_detectlanguage/recording_client_accepts_no_countryhint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_detectlanguage/recording_client_accepts_no_countryhint.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:35 GMT", + "date": "Thu, 17 Sep 2020 17:45:12 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "66cad9e2-049a-42e1-a89f-159f5284b100" + "x-ms-request-id": "8eb01324-1e11-4bc8-9ccd-80a85d5c2900" } }, { @@ -30,14 +30,14 @@ "status": 200, "response": "{\"documents\":[{\"id\":\"0\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"1\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"2\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"3\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}", "responseHeaders": { - "apim-request-id": "af8ce028-ef1d-4418-a1a1-2638fff938ce", + "apim-request-id": "1f452434-a103-4083-a020-1b3fbb055ba6", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "date": "Wed, 16 Sep 2020 19:21:35 GMT", + "date": "Thu, 17 Sep 2020 17:45:12 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "10" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.json index 0c0c6632cd2c..60aa8f8304bd 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:36 GMT", + "date": "Thu, 17 Sep 2020 17:45:13 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "ee287b10-d133-4193-9844-1ed507ea9600" + "x-ms-request-id": "f37c4f6f-dc50-419d-9eef-05a750427800" } }, { @@ -30,14 +30,14 @@ "status": 200, "response": "{\"documents\":[{\"id\":\"1\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"2\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"3\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"4\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"5\",\"detectedLanguage\":{\"name\":\"Spanish\",\"iso6391Name\":\"es\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"6\",\"detectedLanguage\":{\"name\":\"Spanish\",\"iso6391Name\":\"es\",\"confidenceScore\":1.0},\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}", "responseHeaders": { - "apim-request-id": "267c0e25-2dd4-4f51-af6d-4397262851de", + "apim-request-id": "e34ca6a7-7f68-4aaa-9d8c-32ba05bbb9c6", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6", - "date": "Wed, 16 Sep 2020 19:21:36 GMT", + "date": "Thu, 17 Sep 2020 17:45:12 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "11" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.json index 3a0cf436422a..7b52d9aabb80 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:36 GMT", + "date": "Thu, 17 Sep 2020 17:45:13 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "5383a6db-5df9-43bf-92db-f9d211825100" + "x-ms-request-id": "ceafcabd-2422-46aa-b06d-76a1072b2100" } }, { @@ -30,14 +30,14 @@ "status": 200, "response": "{\"documents\":[{\"id\":\"0\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}", "responseHeaders": { - "apim-request-id": "15224ed9-21a2-44c7-9900-a14400bf0837", + "apim-request-id": "dc869904-7210-43c7-8ff8-52ae12541cfd", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "date": "Wed, 16 Sep 2020 19:21:36 GMT", + "date": "Thu, 17 Sep 2020 17:45:12 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "14" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_detectlanguage/recording_service_errors_on_invalid_country_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_detectlanguage/recording_service_errors_on_invalid_country_hint.json index c5ff1c588b6f..85d355c140db 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_detectlanguage/recording_service_errors_on_invalid_country_hint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_detectlanguage/recording_service_errors_on_invalid_country_hint.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:36 GMT", + "date": "Thu, 17 Sep 2020 17:45:13 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "42deaebe-2de1-44c2-9174-756a60bf9800" + "x-ms-request-id": "ec3d1d6f-3081-44d5-bd9a-fe9508877000" } }, { @@ -30,13 +30,13 @@ "status": 200, "response": "{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Country Hint.\",\"innererror\":{\"code\":\"InvalidCountryHint\",\"message\":\"Country hint is not valid. Please specify an ISO 3166-1 alpha-2 two letter country code.\"}}}],\"modelVersion\":\"2020-07-01\"}", "responseHeaders": { - "apim-request-id": "0cbb40c1-4597-4453-a42f-f9d6af0df514", + "apim-request-id": "d581586f-cb97-40d0-9a40-9fc050936610", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:36 GMT", + "date": "Thu, 17 Sep 2020 17:45:13 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "1" + "x-envoy-upstream-service-time": "2" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.json index 830b386a47bf..871c975a642a 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:39 GMT", + "date": "Thu, 17 Sep 2020 17:45:16 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "f76cdaff-c9e7-4eb8-aa4c-16c9d9325c00" + "x-ms-request-id": "713c80be-0749-4404-b18c-0bfe4a7c1f00" } }, { @@ -30,14 +30,14 @@ "status": 200, "response": "{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"week\",\"Space Needle\",\"wonderful trip\",\"Seattle\",\"times\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"entire trip\",\"Seattle\",\"Space Needle\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"movie\"],\"warnings\":[]},{\"id\":\"4\",\"keyPhrases\":[\"book\"],\"warnings\":[]},{\"id\":\"5\",\"keyPhrases\":[\"Monte Rainier\",\"caminos\"],\"warnings\":[]},{\"id\":\"6\",\"keyPhrases\":[\"carretera\",\"tráfico\",\"día\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}", "responseHeaders": { - "apim-request-id": "dcaace98-562f-4fc1-8a6e-5eaca4b91661", + "apim-request-id": "b201c012-275e-4837-8002-0f8a4fc4f5ff", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6", - "date": "Wed, 16 Sep 2020 19:21:38 GMT", + "date": "Thu, 17 Sep 2020 17:45:15 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "26" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.json index 54dcb4fe85f6..a72bfed0da90 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:38 GMT", + "date": "Thu, 17 Sep 2020 17:45:15 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "3bfbe58f-e12d-4589-8fd9-4393f8daa100" + "x-ms-request-id": "04b0b7b1-ab7b-41d5-80d1-dec9a7929a00" } }, { @@ -30,14 +30,14 @@ "status": 200, "response": "{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"week\",\"Space Needle\",\"wonderful trip\",\"Seattle\",\"times\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"entire trip\",\"Seattle\",\"Space Needle\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"movie\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"book\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}", "responseHeaders": { - "apim-request-id": "df53321d-c7e9-46ad-8f9d-4e91dd69bb42", + "apim-request-id": "25d990d8-d0d2-4276-9538-5ecf019b17ea", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "date": "Wed, 16 Sep 2020 19:21:38 GMT", + "date": "Thu, 17 Sep 2020 17:45:15 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "17" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_extractkeyphrases/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_extractkeyphrases/recording_client_accepts_string_with_no_language.json index ab48ff255ba2..a3e0a7909717 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_extractkeyphrases/recording_client_accepts_string_with_no_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_extractkeyphrases/recording_client_accepts_string_with_no_language.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:38 GMT", + "date": "Thu, 17 Sep 2020 17:45:15 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "a9a738f3-8763-41cf-8312-1568ebac8400" + "x-ms-request-id": "543e3212-e333-4b1d-8a3d-d2117bc02d00" } }, { @@ -30,10 +30,10 @@ "status": 200, "response": "{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"week\",\"Space Needle\",\"wonderful trip\",\"Seattle\",\"times\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"entire trip\",\"Seattle\",\"Space Needle\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"movie\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"book\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}", "responseHeaders": { - "apim-request-id": "1aed76d9-e423-41a4-a555-d4dc37deb551", + "apim-request-id": "f69b2a4b-4bc7-422d-acb1-28339521e34c", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "date": "Wed, 16 Sep 2020 19:21:38 GMT", + "date": "Thu, 17 Sep 2020 17:45:15 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_extractkeyphrases/recording_service_errors_on_unsupported_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_extractkeyphrases/recording_service_errors_on_unsupported_language.json index cb66485ac21c..81b40fc928d3 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_extractkeyphrases/recording_service_errors_on_unsupported_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_extractkeyphrases/recording_service_errors_on_unsupported_language.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:38 GMT", + "date": "Thu, 17 Sep 2020 17:45:15 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "51ca0fb9-e677-4daa-881c-bd6366019300" + "x-ms-request-id": "29d6549c-e9a3-4754-b344-2f5560c37c00" } }, { @@ -30,13 +30,13 @@ "status": 200, "response": "{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: af,bg,ca,da,de,el,en,es,et,fi,fr,hr,hu,id,it,ja,ko,lv,nl,no,pl,pt-BR,pt-PT,ro,ru,sk,sl,sv,tr\"}}}],\"modelVersion\":\"2020-07-01\"}", "responseHeaders": { - "apim-request-id": "ac753c77-e980-4ce7-8cc0-69ff6c0cbdaa", + "apim-request-id": "c8403986-170c-4698-9b86-b9234ddb8d13", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:38 GMT", + "date": "Thu, 17 Sep 2020 17:45:15 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "2" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_extractkeyphrases/recording_service_reports_warning_for_long_words.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_extractkeyphrases/recording_service_reports_warning_for_long_words.json index 3ed92a0d8091..d60b2382a6cc 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_extractkeyphrases/recording_service_reports_warning_for_long_words.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_extractkeyphrases/recording_service_reports_warning_for_long_words.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:38 GMT", + "date": "Thu, 17 Sep 2020 17:45:16 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "33339e74-3dff-4985-8c00-1a5994fd5c00" + "x-ms-request-id": "17e8f5f9-44f9-4593-a6b7-2c5e83776b00" } }, { @@ -30,14 +30,14 @@ "status": 200, "response": "{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"world\",\"thisisanextremelymassivesequenceoflettersthatislongerthansixtyfo\"],\"warnings\":[{\"code\":\"LongWordsInDocument\",\"message\":\"The document contains very long words (longer than 64 characters). These words will be truncated and may result in unreliable model predictions.\"}]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}", "responseHeaders": { - "apim-request-id": "fb531977-1522-4ab7-b6cc-0a4d7ac11233", + "apim-request-id": "7d85e134-9eef-4cc8-891b-4c3dcfc61dcd", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "date": "Wed, 16 Sep 2020 19:21:38 GMT", + "date": "Thu, 17 Sep 2020 17:45:15 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "12" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.json index fbdd55b26692..73ab4f14ef2a 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:37 GMT", + "date": "Thu, 17 Sep 2020 17:45:15 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "d4d0a73a-a929-4ed3-ae51-220d751a5300" + "x-ms-request-id": "894eeaea-2f40-4970-b3c9-27d225649500" } }, { @@ -32,14 +32,14 @@ "status": 200, "response": "{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":26,\"length\":7,\"confidenceScore\":0.75},{\"text\":\"last week\",\"category\":\"DateTime\",\"subcategory\":\"DateRange\",\"offset\":34,\"length\":9,\"confidenceScore\":0.8},{\"text\":\"2\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":78,\"length\":1,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":50,\"length\":7,\"confidenceScore\":0.74}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"Saturday\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":25,\"length\":8,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"4\",\"entities\":[{\"text\":\"Monte Rainier\",\"category\":\"Location\",\"offset\":29,\"length\":13,\"confidenceScore\":0.7}],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"text\":\"ayer\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":60,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}", "responseHeaders": { - "apim-request-id": "41b99fe3-2700-4878-b118-d6301058afec", + "apim-request-id": "1a182ec7-ddf0-4fbf-8b73-d3d1ee750452", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5", - "date": "Wed, 16 Sep 2020 19:21:37 GMT", + "date": "Thu, 17 Sep 2020 17:45: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-envoy-upstream-service-time": "158" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizeentities/recording_client_accepts_string_with_a_language_specified.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizeentities/recording_client_accepts_string_with_a_language_specified.json index 8df90f0fae47..b9e9d451388a 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizeentities/recording_client_accepts_string_with_a_language_specified.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizeentities/recording_client_accepts_string_with_a_language_specified.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:37 GMT", + "date": "Thu, 17 Sep 2020 17:45:14 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "a1bd149f-22ff-4c3a-9635-1846f5815f00" + "x-ms-request-id": "9b78eb68-76fa-4b0f-b415-7fb9f2069300" } }, { @@ -32,14 +32,14 @@ "status": 200, "response": "{\"documents\":[{\"id\":\"0\",\"entities\":[{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":26,\"length\":7,\"confidenceScore\":0.75},{\"text\":\"last week\",\"category\":\"DateTime\",\"subcategory\":\"DateRange\",\"offset\":34,\"length\":9,\"confidenceScore\":0.8},{\"text\":\"2\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":78,\"length\":1,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":50,\"length\":7,\"confidenceScore\":0.74}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Saturday\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":25,\"length\":8,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}", "responseHeaders": { - "apim-request-id": "933a5f7d-6149-4d62-a828-f2b9119bf3ea", + "apim-request-id": "6535f3eb-c7bb-4999-bd76-553f6d201b19", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "date": "Wed, 16 Sep 2020 19:21:37 GMT", + "date": "Thu, 17 Sep 2020 17:45:14 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "96" + "x-envoy-upstream-service-time": "134" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizeentities/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizeentities/recording_client_accepts_string_with_no_language.json index afe4d62ea172..579115cad3e8 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizeentities/recording_client_accepts_string_with_no_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizeentities/recording_client_accepts_string_with_no_language.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:37 GMT", + "date": "Thu, 17 Sep 2020 17:45:14 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "57cc699a-8b60-436d-a06a-8fc8a0575d00" + "x-ms-request-id": "d691b2e4-4666-4f48-a8fc-d85b39391c00" } }, { @@ -32,14 +32,14 @@ "status": 200, "response": "{\"documents\":[{\"id\":\"0\",\"entities\":[{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":26,\"length\":7,\"confidenceScore\":0.75},{\"text\":\"last week\",\"category\":\"DateTime\",\"subcategory\":\"DateRange\",\"offset\":34,\"length\":9,\"confidenceScore\":0.8},{\"text\":\"2\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":78,\"length\":1,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":50,\"length\":7,\"confidenceScore\":0.74}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Saturday\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":25,\"length\":8,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}", "responseHeaders": { - "apim-request-id": "bc40b802-5e9c-44eb-9e38-b089ccc960ae", + "apim-request-id": "f3ef9177-b3b4-432f-8a1b-078eb27425ad", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "date": "Wed, 16 Sep 2020 19:21:37 GMT", + "date": "Thu, 17 Sep 2020 17:45:13 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "101" + "x-envoy-upstream-service-time": "143" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizeentities/recording_client_throws_exception_for_too_many_inputs.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizeentities/recording_client_throws_exception_for_too_many_inputs.json index f22a3af8e3a8..98f3bf56387e 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizeentities/recording_client_throws_exception_for_too_many_inputs.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizeentities/recording_client_throws_exception_for_too_many_inputs.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:38 GMT", + "date": "Thu, 17 Sep 2020 17:45:15 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "d504d040-22ca-4cd2-93dc-287edb9da400" + "x-ms-request-id": "04b0b7b1-ab7b-41d5-80d1-dec98e929a00" } }, { @@ -32,13 +32,13 @@ "status": 400, "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocumentBatch\",\"message\":\"Batch request contains too many records. Max 5 records are permitted.\"}}}", "responseHeaders": { - "apim-request-id": "a76c000f-c001-4ae2-9908-1d125b85da19", + "apim-request-id": "c9a07660-04b8-451c-8ddd-456b8f3fd88e", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:37 GMT", + "date": "Thu, 17 Sep 2020 17:45:14 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "10" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizeentities/recording_service_errors_on_unsupported_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizeentities/recording_service_errors_on_unsupported_language.json index 02429d4cd0a4..7b90c6fc30a2 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizeentities/recording_service_errors_on_unsupported_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizeentities/recording_service_errors_on_unsupported_language.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:37 GMT", + "date": "Thu, 17 Sep 2020 17:45:14 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "2c0fc12c-10fa-4b08-a76d-0e78f4e78f00" + "x-ms-request-id": "a80a2f0a-59f1-4a25-af6c-8e40da861f00" } }, { @@ -32,13 +32,13 @@ "status": 200, "response": "{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ar,cs,da,de,en,es,fi,fr,hu,it,ja,ko,nl,no,pl,pt-BR,pt-PT,ru,sv,tr,zh-Hans\"}}}],\"modelVersion\":\"2020-04-01\"}", "responseHeaders": { - "apim-request-id": "7198ecec-686f-49ef-a33d-88001a429b7e", + "apim-request-id": "c31d48f4-2f2b-4c16-b556-cd466c5c6605", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:37 GMT", + "date": "Thu, 17 Sep 2020 17:45:14 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "3" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.json index 8c4302b30c9e..8f1248cbeb73 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:41 GMT", + "date": "Thu, 17 Sep 2020 17:45:20 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "315a12f3-15c7-4113-9270-6bf343369b00" + "x-ms-request-id": "9433ef72-71a4-4606-9dc1-c236e9187700" } }, { @@ -32,14 +32,14 @@ "status": 200, "response": "{\"documents\":[{\"id\":\"1\",\"entities\":[{\"bingId\":\"5fbba6b8-85e1-4d41-9444-d9055436e473\",\"name\":\"Seattle\",\"matches\":[{\"text\":\"Seattle\",\"offset\":26,\"length\":7,\"confidenceScore\":0.21}],\"language\":\"en\",\"id\":\"Seattle\",\"url\":\"https://en.wikipedia.org/wiki/Seattle\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"f8dd5b08-206d-2554-6e4a-893f51f4de7e\",\"name\":\"Space Needle\",\"matches\":[{\"text\":\"Space Needle\",\"offset\":65,\"length\":12,\"confidenceScore\":0.42}],\"language\":\"en\",\"id\":\"Space Needle\",\"url\":\"https://en.wikipedia.org/wiki/Space_Needle\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"bingId\":\"5fbba6b8-85e1-4d41-9444-d9055436e473\",\"name\":\"Seattle\",\"matches\":[{\"text\":\"Seattle\",\"offset\":50,\"length\":7,\"confidenceScore\":0.2}],\"language\":\"en\",\"id\":\"Seattle\",\"url\":\"https://en.wikipedia.org/wiki/Seattle\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"f8dd5b08-206d-2554-6e4a-893f51f4de7e\",\"name\":\"Space Needle\",\"matches\":[{\"text\":\"Space Needle\",\"offset\":90,\"length\":12,\"confidenceScore\":0.36}],\"language\":\"en\",\"id\":\"Space Needle\",\"url\":\"https://en.wikipedia.org/wiki/Space_Needle\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"bingId\":\"296617ab-4ddb-cc10-beba-56e0f42af76b\",\"name\":\"Saturday\",\"matches\":[{\"text\":\"Saturday\",\"offset\":25,\"length\":8,\"confidenceScore\":0.05}],\"language\":\"en\",\"id\":\"Saturday\",\"url\":\"https://en.wikipedia.org/wiki/Saturday\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"4\",\"entities\":[{\"bingId\":\"9ae3e6ca-81ea-6fa1-ffa0-42e1d7890906\",\"name\":\"Monte Rainier\",\"matches\":[{\"text\":\"Monte Rainier\",\"offset\":29,\"length\":13,\"confidenceScore\":0.81}],\"language\":\"es\",\"id\":\"Monte Rainier\",\"url\":\"https://es.wikipedia.org/wiki/Monte_Rainier\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-02-01\"}", "responseHeaders": { - "apim-request-id": "4c1c2759-3518-47e4-a206-e8a2e1968e94", + "apim-request-id": "bffaa579-5ce6-4187-8112-20e0a0f835d5", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5", - "date": "Wed, 16 Sep 2020 19:21:41 GMT", + "date": "Thu, 17 Sep 2020 17:45:19 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "47" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.json index 03555ba62602..5465726098d7 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:41 GMT", + "date": "Thu, 17 Sep 2020 17:45:19 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "4296b554-9b61-4491-b0df-da93fc4d6600" + "x-ms-request-id": "8b087181-9d7e-4119-9568-0631dbcf2500" } }, { @@ -32,14 +32,14 @@ "status": 200, "response": "{\"documents\":[{\"id\":\"0\",\"entities\":[{\"bingId\":\"5fbba6b8-85e1-4d41-9444-d9055436e473\",\"name\":\"Seattle\",\"matches\":[{\"text\":\"Seattle\",\"offset\":26,\"length\":7,\"confidenceScore\":0.21}],\"language\":\"en\",\"id\":\"Seattle\",\"url\":\"https://en.wikipedia.org/wiki/Seattle\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"f8dd5b08-206d-2554-6e4a-893f51f4de7e\",\"name\":\"Space Needle\",\"matches\":[{\"text\":\"Space Needle\",\"offset\":65,\"length\":12,\"confidenceScore\":0.42}],\"language\":\"en\",\"id\":\"Space Needle\",\"url\":\"https://en.wikipedia.org/wiki/Space_Needle\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"bingId\":\"5fbba6b8-85e1-4d41-9444-d9055436e473\",\"name\":\"Seattle\",\"matches\":[{\"text\":\"Seattle\",\"offset\":50,\"length\":7,\"confidenceScore\":0.2}],\"language\":\"en\",\"id\":\"Seattle\",\"url\":\"https://en.wikipedia.org/wiki/Seattle\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"f8dd5b08-206d-2554-6e4a-893f51f4de7e\",\"name\":\"Space Needle\",\"matches\":[{\"text\":\"Space Needle\",\"offset\":90,\"length\":12,\"confidenceScore\":0.36}],\"language\":\"en\",\"id\":\"Space Needle\",\"url\":\"https://en.wikipedia.org/wiki/Space_Needle\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"bingId\":\"296617ab-4ddb-cc10-beba-56e0f42af76b\",\"name\":\"Saturday\",\"matches\":[{\"text\":\"Saturday\",\"offset\":25,\"length\":8,\"confidenceScore\":0.05}],\"language\":\"en\",\"id\":\"Saturday\",\"url\":\"https://en.wikipedia.org/wiki/Saturday\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-02-01\"}", "responseHeaders": { - "apim-request-id": "5c3d1e78-8d64-467f-8b57-5f5a000ed5a9", + "apim-request-id": "e44cdfa2-1d89-47b9-8dd7-82fad96fa6e9", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "date": "Wed, 16 Sep 2020 19:21:41 GMT", + "date": "Thu, 17 Sep 2020 17:45:19 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-envoy-upstream-service-time": "75" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizelinkedentities/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizelinkedentities/recording_client_accepts_string_with_no_language.json index 43cd297764f9..ebf8a16de50e 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizelinkedentities/recording_client_accepts_string_with_no_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizelinkedentities/recording_client_accepts_string_with_no_language.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:41 GMT", + "date": "Thu, 17 Sep 2020 17:45:18 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "f12d03cd-7ad8-4576-8b44-d36132ee8300" + "x-ms-request-id": "c2c66045-7447-4a87-baf3-3b3be6003600" } }, { @@ -32,14 +32,14 @@ "status": 200, "response": "{\"documents\":[{\"id\":\"0\",\"entities\":[{\"bingId\":\"5fbba6b8-85e1-4d41-9444-d9055436e473\",\"name\":\"Seattle\",\"matches\":[{\"text\":\"Seattle\",\"offset\":26,\"length\":7,\"confidenceScore\":0.21}],\"language\":\"en\",\"id\":\"Seattle\",\"url\":\"https://en.wikipedia.org/wiki/Seattle\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"f8dd5b08-206d-2554-6e4a-893f51f4de7e\",\"name\":\"Space Needle\",\"matches\":[{\"text\":\"Space Needle\",\"offset\":65,\"length\":12,\"confidenceScore\":0.42}],\"language\":\"en\",\"id\":\"Space Needle\",\"url\":\"https://en.wikipedia.org/wiki/Space_Needle\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"bingId\":\"5fbba6b8-85e1-4d41-9444-d9055436e473\",\"name\":\"Seattle\",\"matches\":[{\"text\":\"Seattle\",\"offset\":50,\"length\":7,\"confidenceScore\":0.2}],\"language\":\"en\",\"id\":\"Seattle\",\"url\":\"https://en.wikipedia.org/wiki/Seattle\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"f8dd5b08-206d-2554-6e4a-893f51f4de7e\",\"name\":\"Space Needle\",\"matches\":[{\"text\":\"Space Needle\",\"offset\":90,\"length\":12,\"confidenceScore\":0.36}],\"language\":\"en\",\"id\":\"Space Needle\",\"url\":\"https://en.wikipedia.org/wiki/Space_Needle\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"bingId\":\"296617ab-4ddb-cc10-beba-56e0f42af76b\",\"name\":\"Saturday\",\"matches\":[{\"text\":\"Saturday\",\"offset\":25,\"length\":8,\"confidenceScore\":0.05}],\"language\":\"en\",\"id\":\"Saturday\",\"url\":\"https://en.wikipedia.org/wiki/Saturday\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-02-01\"}", "responseHeaders": { - "apim-request-id": "4d2c4160-6043-462c-82dd-034003314162", + "apim-request-id": "085e571b-ca1f-4f2e-97a5-c98608f3a6cd", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "date": "Wed, 16 Sep 2020 19:21:40 GMT", + "date": "Thu, 17 Sep 2020 17:45:19 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "946" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.json index c4dbed5c6253..1dfeba573f20 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:42 GMT", + "date": "Thu, 17 Sep 2020 17:45:20 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "d4d0a73a-a929-4ed3-ae51-220d6d1b5300" + "x-ms-request-id": "f93d44fc-b20a-4ccb-b61f-e17a5bd22100" } }, { @@ -32,13 +32,13 @@ "status": 400, "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocumentBatch\",\"message\":\"Batch request contains too many records. Max 5 records are permitted.\"}}}", "responseHeaders": { - "apim-request-id": "189c3b3b-7fd9-4c12-b13e-b8bba4a6125b", + "apim-request-id": "b70c221e-0fa2-40eb-a256-cade1f82e99a", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:41 GMT", + "date": "Thu, 17 Sep 2020 17:45:19 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "6" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizelinkedentities/recording_service_errors_on_unsupported_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizelinkedentities/recording_service_errors_on_unsupported_language.json index fb46fd84072d..4577c6cb4724 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizelinkedentities/recording_service_errors_on_unsupported_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizelinkedentities/recording_service_errors_on_unsupported_language.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:41 GMT", + "date": "Thu, 17 Sep 2020 17:45:20 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "5e6b2353-7424-4fac-9863-664d951e8a00" + "x-ms-request-id": "6352b1c6-3a07-4caa-84df-663b81506e00" } }, { @@ -32,9 +32,9 @@ "status": 200, "response": "{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es\"}}}],\"modelVersion\":\"2020-02-01\"}", "responseHeaders": { - "apim-request-id": "3e18a346-8e5a-4f07-b7f2-ec18d982797d", + "apim-request-id": "df92edbe-7c30-451b-bb7a-b3925236785d", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:41 GMT", + "date": "Thu, 17 Sep 2020 17:45:19 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizepiientities/recording_accepts_domain_filter.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizepiientities/recording_accepts_domain_filter.json index f8d4f149e5e1..6a030084924e 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizepiientities/recording_accepts_domain_filter.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizepiientities/recording_accepts_domain_filter.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:41 GMT", + "date": "Thu, 17 Sep 2020 17:45:18 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "b4e7aa75-c1ab-4b26-bcd0-7e3013a89200" + "x-ms-request-id": "bb323e98-9ed8-4762-9657-9b397a0e7500" } }, { @@ -33,14 +33,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"I work at Microsoft and my phone number is ************\",\"id\":\"0\",\"entities\":[{\"text\":\"333-333-3333\",\"category\":\"Phone Number\",\"offset\":43,\"length\":12,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}", "responseHeaders": { - "apim-request-id": "1d0411f1-0291-485e-a9be-758ce108610b", + "apim-request-id": "21cba29f-4dba-4f15-bd82-7a2c3415d1d5", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "date": "Wed, 16 Sep 2020 19:21:40 GMT", + "date": "Thu, 17 Sep 2020 17:45:17 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "86" + "x-envoy-upstream-service-time": "124" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.json index 6121f2447d2c..d633b5e5b235 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:40 GMT", + "date": "Thu, 17 Sep 2020 17:45:17 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "8aa8e9c1-41b4-43c1-9519-94aa843e5000" + "x-ms-request-id": "5de8a399-1bda-4a99-a0ec-46c2402d2500" } }, { @@ -32,14 +32,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I went to see a movie on ******** and it was perfectly average, nothing more or less than I expected.\",\"id\":\"3\",\"entities\":[{\"text\":\"Saturday\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":25,\"length\":8,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[{\"id\":\"4\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en\"}}},{\"id\":\"5\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en\"}}}],\"modelVersion\":\"2020-07-01\"}", "responseHeaders": { - "apim-request-id": "dacd44ef-5a78-4283-a93b-433fbd15cbe7", + "apim-request-id": "62ff1658-2c76-41d8-aef6-3dc922c15106", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3", - "date": "Wed, 16 Sep 2020 19:21:40 GMT", + "date": "Thu, 17 Sep 2020 17:45:17 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "114" + "x-envoy-upstream-service-time": "116" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizepiientities/recording_client_accepts_string_with_a_language_specified.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizepiientities/recording_client_accepts_string_with_a_language_specified.json index 47df3b4148e9..173a97e47dcc 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizepiientities/recording_client_accepts_string_with_a_language_specified.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizepiientities/recording_client_accepts_string_with_a_language_specified.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:39 GMT", + "date": "Thu, 17 Sep 2020 17:45:17 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "9c84129b-b4c4-45ae-bd5c-3e69b5015300" + "x-ms-request-id": "443df874-8cc3-4f3b-b884-b34e923f8c00" } }, { @@ -32,14 +32,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I went to see a movie on ******** and it was perfectly average, nothing more or less than I expected.\",\"id\":\"2\",\"entities\":[{\"text\":\"Saturday\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":25,\"length\":8,\"confidenceScore\":0.8}],\"warnings\":[]},{\"redactedText\":\"I didn't like the last book I read at all.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}", "responseHeaders": { - "apim-request-id": "2dbb3e75-d99a-437f-9edb-d83f4359521e", + "apim-request-id": "549b426b-5eaf-4146-ab1a-f1d4a197c939", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "date": "Wed, 16 Sep 2020 19:21:39 GMT", + "date": "Thu, 17 Sep 2020 17:45:16 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "176" + "x-envoy-upstream-service-time": "134" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizepiientities/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizepiientities/recording_client_accepts_string_with_no_language.json index 07ce3a3c8591..835270de5323 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizepiientities/recording_client_accepts_string_with_no_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizepiientities/recording_client_accepts_string_with_no_language.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:39 GMT", + "date": "Thu, 17 Sep 2020 17:45:16 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "44eb4c8a-5955-4116-b7dc-747f8cfb6700" + "x-ms-request-id": "f14f14f6-dbec-4cd6-b0fa-1ce499cc6f00" } }, { @@ -32,14 +32,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I went to see a movie on ******** and it was perfectly average, nothing more or less than I expected.\",\"id\":\"2\",\"entities\":[{\"text\":\"Saturday\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":25,\"length\":8,\"confidenceScore\":0.8}],\"warnings\":[]},{\"redactedText\":\"I didn't like the last book I read at all.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}", "responseHeaders": { - "apim-request-id": "25cb5ff6-cf39-40a4-a989-a4df1df9653d", + "apim-request-id": "f5db6712-a465-48ce-8c98-86c187f2e89d", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "date": "Wed, 16 Sep 2020 19:21:39 GMT", + "date": "Thu, 17 Sep 2020 17:45:16 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "148" + "x-envoy-upstream-service-time": "154" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.json index 9ff49de576cc..e12aa07d7e39 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:40 GMT", + "date": "Thu, 17 Sep 2020 17:45:17 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "2ae95dbc-caef-450d-a75b-eacb718f8d00" + "x-ms-request-id": "29d6549c-e9a3-4754-b344-2f55a4c37c00" } }, { @@ -32,14 +32,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"Your Social Security Number is ***********.\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"U.S. Social Security Number (SSN)\",\"offset\":31,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}", "responseHeaders": { - "apim-request-id": "8408906d-2e03-430b-98ee-dd4704481ea1", + "apim-request-id": "67939895-8b41-47f4-95d8-266d3e121981", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "date": "Wed, 16 Sep 2020 19:21:39 GMT", + "date": "Thu, 17 Sep 2020 17:45:16 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "77" + "x-envoy-upstream-service-time": "95" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizepiientities/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizepiientities/recording_client_throws_on_empty_list.json index 10028efa5a5c..636e2f0a1459 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizepiientities/recording_client_throws_on_empty_list.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizepiientities/recording_client_throws_on_empty_list.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:39 GMT", + "date": "Thu, 17 Sep 2020 17:45:16 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "d9e4e66c-91cc-45e6-9976-746c61cf5000" + "x-ms-request-id": "8b087181-9d7e-4119-9568-063145cf2500" } }, { @@ -32,13 +32,13 @@ "status": 400, "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"Invalid Request.\",\"innererror\":{\"code\":\"MissingInputRecords\",\"message\":\"Missing input records.\"}}}", "responseHeaders": { - "apim-request-id": "872ee9f6-e8f5-4c49-a846-5c0e7c53cf4a", + "apim-request-id": "45df3b67-9b1f-46ca-845a-d7c366c71b3d", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:39 GMT", + "date": "Thu, 17 Sep 2020 17:45:16 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "4" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizepiientities/recording_service_errors_on_unsupported_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizepiientities/recording_service_errors_on_unsupported_language.json index 70313e0d76df..7dff1ec538b0 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizepiientities/recording_service_errors_on_unsupported_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_recognizepiientities/recording_service_errors_on_unsupported_language.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:40 GMT", + "date": "Thu, 17 Sep 2020 17:45:17 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "9c0920d1-a8cd-4bfd-b4ab-6e9b278f8c00" + "x-ms-request-id": "f93d44fc-b20a-4ccb-b61f-e17ad8d12100" } }, { @@ -32,9 +32,9 @@ "status": 200, "response": "{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en\"}}}],\"modelVersion\":\"2020-07-01\"}", "responseHeaders": { - "apim-request-id": "bb594e7b-2dc9-4d77-bdaf-d1c4a068b11b", + "apim-request-id": "936aed26-859e-4908-98ca-69f917b3d3ea", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:40 GMT", + "date": "Thu, 17 Sep 2020 17:45:17 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_diacritics_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_diacritics_nfc.json index a702badd7827..aa268f8728ab 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_diacritics_nfc.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_diacritics_nfc.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:43 GMT", + "date": "Thu, 17 Sep 2020 17:45:21 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "5383a6db-5df9-43bf-92db-f9d295835100" + "x-ms-request-id": "50e64afc-14d5-4994-a523-66cca15d3400" } }, { @@ -32,14 +32,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"año SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"U.S. Social Security Number (SSN)\",\"offset\":9,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}", "responseHeaders": { - "apim-request-id": "e84fe26a-69db-47ea-b57a-f17d027253ce", + "apim-request-id": "ffb76e1a-7d36-4296-ac56-0987e74b29ec", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "date": "Wed, 16 Sep 2020 19:21:43 GMT", + "date": "Thu, 17 Sep 2020 17:45:21 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "54" + "x-envoy-upstream-service-time": "76" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_diacritics_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_diacritics_nfd.json index f0eded5ace52..249deac8069e 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_diacritics_nfd.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_diacritics_nfd.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:43 GMT", + "date": "Thu, 17 Sep 2020 17:45:22 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "18cf0938-e845-40d2-80ce-41a2f6b95d00" + "x-ms-request-id": "04b0b7b1-ab7b-41d5-80d1-dec947949a00" } }, { @@ -32,14 +32,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"año SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"U.S. Social Security Number (SSN)\",\"offset\":10,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}", "responseHeaders": { - "apim-request-id": "9b931119-bfc7-4df7-9696-ecfdda7e0911", + "apim-request-id": "d029f461-df21-40e8-8e61-9ebde004ed22", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "date": "Wed, 16 Sep 2020 19:21:43 GMT", + "date": "Thu, 17 Sep 2020 17:45:21 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "57" + "x-envoy-upstream-service-time": "81" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_emoji.json index 666c65b3a657..d591726d3aad 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_emoji.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_emoji.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:42 GMT", + "date": "Thu, 17 Sep 2020 17:45:20 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "7568fdb3-862a-43ea-8b65-9ae32479ae00" + "x-ms-request-id": "67dae986-1e0b-47be-b38f-de0f82e86b00" } }, { @@ -32,14 +32,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"👩 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"U.S. Social Security Number (SSN)\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}", "responseHeaders": { - "apim-request-id": "0a2997c1-5ad6-4f2b-849a-34ae5fa13262", + "apim-request-id": "62297e80-203c-4f71-952c-3b55281126ea", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "date": "Wed, 16 Sep 2020 19:21:41 GMT", + "date": "Thu, 17 Sep 2020 17:45:20 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "62" + "x-envoy-upstream-service-time": "77" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_emoji_with_skin_tone_modifier.json index e2e1805e6a95..5cb2341001c0 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_emoji_with_skin_tone_modifier.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_emoji_with_skin_tone_modifier.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:42 GMT", + "date": "Thu, 17 Sep 2020 17:45:21 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "cd87370d-464e-436d-852c-dc2d951d9300" + "x-ms-request-id": "af8e6dad-9bc8-4357-ae59-662c116f1d00" } }, { @@ -32,14 +32,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"👩🏻 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"U.S. Social Security Number (SSN)\",\"offset\":10,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}", "responseHeaders": { - "apim-request-id": "b65ee029-3ac2-4e9a-9c1e-3d288b59ff74", + "apim-request-id": "447bd7e9-3d77-4472-80c3-78621b4c634e", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "date": "Wed, 16 Sep 2020 19:21:43 GMT", + "date": "Thu, 17 Sep 2020 17:45:20 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "61" + "x-envoy-upstream-service-time": "129" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_family_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_family_emoji.json index cf4389bc3f09..d55c004be23e 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_family_emoji.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_family_emoji.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:42 GMT", + "date": "Thu, 17 Sep 2020 17:45:21 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "33339e74-3dff-4985-8c00-1a5950fe5c00" + "x-ms-request-id": "e3400980-d6d6-443a-bab2-07b6ee222400" } }, { @@ -32,14 +32,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"👩‍👩‍👧‍👧 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"U.S. Social Security Number (SSN)\",\"offset\":17,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}", "responseHeaders": { - "apim-request-id": "6eecbdb8-39f5-4b92-b9da-d9dcfa632859", + "apim-request-id": "e0a08325-86b1-4b5d-be8c-fca04a3f2992", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "date": "Wed, 16 Sep 2020 19:21:43 GMT", + "date": "Thu, 17 Sep 2020 17:45:20 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "56" + "x-envoy-upstream-service-time": "74" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_family_emoji_wit_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_family_emoji_wit_skin_tone_modifier.json index 1d8fc04f9470..621ef779526e 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_family_emoji_wit_skin_tone_modifier.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_family_emoji_wit_skin_tone_modifier.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:43 GMT", + "date": "Thu, 17 Sep 2020 17:45:21 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "fa2b50e4-8c42-44e0-975d-506d77f29700" + "x-ms-request-id": "0042c358-825c-4347-b087-7b0d4f577200" } }, { @@ -32,14 +32,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"U.S. Social Security Number (SSN)\",\"offset\":25,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}", "responseHeaders": { - "apim-request-id": "3ad71c1a-62bc-406d-ab69-20391d9695bc", + "apim-request-id": "6f39de19-f8cc-411d-9c86-5e1cc9e8505a", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "date": "Wed, 16 Sep 2020 19:21:43 GMT", + "date": "Thu, 17 Sep 2020 17:45:21 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "58" + "x-envoy-upstream-service-time": "81" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_korean_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_korean_nfc.json index f48087e36c32..47f7e879fa4b 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_korean_nfc.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_korean_nfc.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:43 GMT", + "date": "Thu, 17 Sep 2020 17:45:22 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "2c0fc12c-10fa-4b08-a76d-0e784ee98f00" + "x-ms-request-id": "5f68c4b7-b230-4e5d-82c7-862293797700" } }, { @@ -32,14 +32,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"아가 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"U.S. Social Security Number (SSN)\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}", "responseHeaders": { - "apim-request-id": "622e1c77-ff42-4cef-a809-fa2365b1ec7c", + "apim-request-id": "fa724135-6aa8-490e-8cf1-ce70c9d3b8ef", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "date": "Wed, 16 Sep 2020 19:21:44 GMT", + "date": "Thu, 17 Sep 2020 17:45:22 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "58" + "x-envoy-upstream-service-time": "67" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_korean_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_korean_nfd.json index de9dfe641518..0326d3300b33 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_korean_nfd.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_korean_nfd.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:44 GMT", + "date": "Thu, 17 Sep 2020 17:45:22 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "a2c60984-ad82-4a38-b3ac-c1b0d4957f00" + "x-ms-request-id": "9b78eb68-76fa-4b0f-b415-7fb912099300" } }, { @@ -32,14 +32,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"아가 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"U.S. Social Security Number (SSN)\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}", "responseHeaders": { - "apim-request-id": "a60f47d7-a961-4c9f-a661-e941fe9daa05", + "apim-request-id": "53766fb8-75b6-4f9c-a323-6197fdf43d9d", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "date": "Wed, 16 Sep 2020 19:21:44 GMT", + "date": "Thu, 17 Sep 2020 17:45:22 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "64" + "x-envoy-upstream-service-time": "84" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_zalgo.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_zalgo.json index 60d9b87df04e..11b3cc68647a 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_zalgo.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_string_encoding/recording_zalgo.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1329", "content-type": "application/json; charset=utf-8", - "date": "Wed, 16 Sep 2020 19:21:44 GMT", + "date": "Thu, 17 Sep 2020 17:45:23 GMT", "expires": "-1", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", @@ -19,7 +19,7 @@ "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.11021.16 - CHI ProdSlices", - "x-ms-request-id": "fa2b50e4-8c42-44e0-975d-506db6f29700" + "x-ms-request-id": "ec3d1d6f-3081-44d5-bd9a-fe95b2887000" } }, { @@ -32,14 +32,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"U.S. Social Security Number (SSN)\",\"offset\":121,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}", "responseHeaders": { - "apim-request-id": "b949f110-b57a-4d40-93a2-0e8c4cb5daf9", + "apim-request-id": "3f136082-58f2-433c-941e-8a8b27fcae85", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "date": "Wed, 16 Sep 2020 19:21:44 GMT", + "date": "Thu, 17 Sep 2020 17:45:22 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "88" + "x-envoy-upstream-service-time": "118" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient/recording_analyzesentiment.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient/recording_analyzesentiment.json index 8aeb6163b2ee..763221487174 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient/recording_analyzesentiment.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient/recording_analyzesentiment.json @@ -10,14 +10,14 @@ "status": 200, "response": "{\"documents\":[{\"id\":\"0\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.99,\"neutral\":0.01,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.99,\"neutral\":0.01,\"negative\":0.0},\"offset\":0,\"length\":86,\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\"}],\"warnings\":[]},{\"id\":\"1\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"offset\":0,\"length\":58,\"text\":\"Unfortunately, it rained during my entire trip to Seattle.\"},{\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.7,\"negative\":0.29},\"offset\":59,\"length\":43,\"text\":\"I didn't even get to visit the Space Needle\"}],\"warnings\":[]},{\"id\":\"2\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":101,\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\"}],\"warnings\":[]},{\"id\":\"3\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.03,\"negative\":0.96},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.03,\"negative\":0.96},\"offset\":0,\"length\":42,\"text\":\"I didn't like the last book I read at all.\"}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}", "responseHeaders": { - "apim-request-id": "9f4f47bc-b85e-4ca7-97c8-02f9636724ca", + "apim-request-id": "d7825ea5-3826-4b44-9434-4f22a65d1fba", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "date": "Wed, 16 Sep 2020 19:21:31 GMT", + "date": "Thu, 17 Sep 2020 17:45:08 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "100" + "x-envoy-upstream-service-time": "95" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient/recording_detectlanguage.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient/recording_detectlanguage.json index dd198aa7cb8e..eeda331aaa89 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient/recording_detectlanguage.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient/recording_detectlanguage.json @@ -8,14 +8,14 @@ "status": 200, "response": "{\"documents\":[{\"id\":\"0\",\"detectedLanguage\":{\"name\":\"French\",\"iso6391Name\":\"fr\",\"confidenceScore\":1.0},\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}", "responseHeaders": { - "apim-request-id": "a493fbd9-3233-4873-9e2e-45002e58dc88", + "apim-request-id": "4ffd3102-414b-4189-b255-1d73cc82f71c", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "date": "Wed, 16 Sep 2020 19:21:32 GMT", + "date": "Thu, 17 Sep 2020 17:45:08 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "14" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient/recording_extractkeyphrases.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient/recording_extractkeyphrases.json index cd7ca69076e0..3f5fe6d7d6cd 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient/recording_extractkeyphrases.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient/recording_extractkeyphrases.json @@ -8,14 +8,14 @@ "status": 200, "response": "{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"wonderful trip\",\"Seattle\",\"weekend\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}", "responseHeaders": { - "apim-request-id": "0a3bcbdb-a759-4a44-b9e4-1c58c8de1d7a", + "apim-request-id": "18f43761-4e76-4739-8153-d1e7403fdf3a", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "date": "Wed, 16 Sep 2020 19:21:32 GMT", + "date": "Thu, 17 Sep 2020 17:45:08 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "9" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient/recording_recognizeentities.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient/recording_recognizeentities.json index cd98933f7ef4..62307cb584ac 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient/recording_recognizeentities.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient/recording_recognizeentities.json @@ -10,14 +10,14 @@ "status": 200, "response": "{\"documents\":[{\"id\":\"0\",\"entities\":[{\"text\":\"trip\",\"category\":\"Event\",\"offset\":18,\"length\":4,\"confidenceScore\":0.6},{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":26,\"length\":7,\"confidenceScore\":0.83},{\"text\":\"last weekend\",\"category\":\"DateTime\",\"subcategory\":\"DateRange\",\"offset\":34,\"length\":12,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}", "responseHeaders": { - "apim-request-id": "abd6e53d-1650-4176-abc4-abc6f5723c4e", + "apim-request-id": "6cea331b-d669-4458-b2d4-cebfd9b51040", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "date": "Wed, 16 Sep 2020 19:21:32 GMT", + "date": "Thu, 17 Sep 2020 17:45:08 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "76" + "x-envoy-upstream-service-time": "87" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient/recording_recognizelinkedentities.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient/recording_recognizelinkedentities.json index 08e5a6fcca77..8264efdb3c26 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient/recording_recognizelinkedentities.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient/recording_recognizelinkedentities.json @@ -10,14 +10,14 @@ "status": 200, "response": "{\"documents\":[{\"id\":\"0\",\"entities\":[{\"bingId\":\"2d00c46f-8bc6-b7da-83af-6c8eb6b1ecd2\",\"name\":\"Roman mythology\",\"matches\":[{\"text\":\"Roman god\",\"offset\":4,\"length\":9,\"confidenceScore\":0.18}],\"language\":\"en\",\"id\":\"Roman mythology\",\"url\":\"https://en.wikipedia.org/wiki/Roman_mythology\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-02-01\"}", "responseHeaders": { - "apim-request-id": "f28a5dd1-c82e-41d5-b908-b1cab4c6b1c5", + "apim-request-id": "fd60740e-5725-485d-b16d-a37c3e03c7b9", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "date": "Wed, 16 Sep 2020 19:21:32 GMT", + "date": "Thu, 17 Sep 2020 17:45:08 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "42" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient/recording_recognizepiientities.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient/recording_recognizepiientities.json index 378850fe1856..d1e50a7e34d5 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient/recording_recognizepiientities.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient/recording_recognizepiientities.json @@ -10,14 +10,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"Your social-security number is 078-05-1120.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}", "responseHeaders": { - "apim-request-id": "99f83c4e-d46f-440e-8867-1fa045bf98ec", + "apim-request-id": "432c9778-0370-4c67-923a-be8f098314d4", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "date": "Wed, 16 Sep 2020 19:21:32 GMT", + "date": "Thu, 17 Sep 2020 17:45:09 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "75" + "x-envoy-upstream-service-time": "118" } } ], diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_client_accepts_string_and_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_client_accepts_string_and_language.js index 1e3104ab451a..59b68ea2fa38 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_client_accepts_string_and_language.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_client_accepts_string_and_language.js @@ -11,8 +11,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1329', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -24,17 +22,19 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '35a98dbc-03be-4d2a-a679-f5440b9c6300', + '662fb32b-c10d-4cff-9ef8-5686667a2000', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=Ap0mYxXGauRHgTbLNfdQdmPIIHRUAQAAAJ5c9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:03 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AlzoLVIyYxBKrtNu1gjj7Z_IIHRUAQAAAHmX9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:25 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:02 GMT' + 'Thu, 17 Sep 2020 17:44:25 GMT', + 'Content-Length', + '1329' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -48,13 +48,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=4', 'x-envoy-upstream-service-time', - '86', + '91', 'apim-request-id', - 'b3a39257-f1f6-4c15-bcd8-42ef678f3947', + '353c1009-9882-4a10-a129-e0a95b155a9d', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:03 GMT' + 'Thu, 17 Sep 2020 17:44:25 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_client_accepts_string_with_no_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_client_accepts_string_with_no_language.js index 51a2f3c09e49..d2fa3607b795 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_client_accepts_string_with_no_language.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_client_accepts_string_with_no_language.js @@ -11,8 +11,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1329', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -24,17 +22,19 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '13d46b0f-5dbb-4d6a-ba3b-cdfc965d8d00', + 'c1fba361-dfb1-4889-8dfb-d53c87de7400', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AoZLgM1MnChIvqc8QVoA0WDIIHRUAQAAAJ9c9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:04 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AmMn7fi9D9dIjpstOPgheOTIIHRUAQAAAHmX9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:26 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:03 GMT' + 'Thu, 17 Sep 2020 17:44:25 GMT', + 'Content-Length', + '1329' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -48,13 +48,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=4', 'x-envoy-upstream-service-time', - '92', + '97', 'apim-request-id', - 'b38f6d7a-1b7f-4cf1-bd09-b77d0c87c30e', + '23a0185a-e4d9-4119-b53d-4bcc1a2eeaa7', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:03 GMT' + 'Thu, 17 Sep 2020 17:44:26 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_client_accepts_textdocumentinput.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_client_accepts_textdocumentinput.js index 375230441294..54b2521b5b1f 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_client_accepts_textdocumentinput.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_client_accepts_textdocumentinput.js @@ -22,17 +22,17 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '1efaa007-2566-4ab2-96f8-9329fd8f8a00', + 'e6ef544b-061e-4ea0-9a91-4aef7ef42800', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=Ais0Vp89bexEumlxmuXoTYbIIHRUAQAAAKFc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:05 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AvuvqEUHqvlEo2b_YbYJMJHIIHRUAQAAAHuX9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:28 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:05 GMT', + 'Thu, 17 Sep 2020 17:44:28 GMT', 'Content-Length', '1329' ]); @@ -48,13 +48,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=6', 'x-envoy-upstream-service-time', - '392', + '112', 'apim-request-id', - 'cb494bfa-db4b-4a9b-ae75-52cb323abd3b', + '6199ad1b-1024-41ae-b2dd-d78cea893e06', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:06 GMT' + 'Thu, 17 Sep 2020 17:44:28 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_client_gets_negative_mined_opinions.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_client_gets_negative_mined_opinions.js index 56df7630c918..3b6d3504af5f 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_client_gets_negative_mined_opinions.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_client_gets_negative_mined_opinions.js @@ -22,17 +22,17 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'b63501fd-7a9f-4a42-a54e-1c4c003db000', + '9966666d-ac1a-4587-8cd1-f7415ec92b00', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AuEM_Qegz1VKk8gLQPVPpE_IIHRUAQAAAKNc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:07 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AtvjEBghe5RNnYfFgHpQxCjIIHRUAQAAAH2X9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:29 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:07 GMT', + 'Thu, 17 Sep 2020 17:44:29 GMT', 'Content-Length', '1329' ]); @@ -48,13 +48,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1', 'x-envoy-upstream-service-time', - '102', + '88', 'apim-request-id', - 'a6c32bc2-3524-4f79-8909-5459eb377f02', + '4c896807-82f6-4e65-94be-755954f6c201', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:07 GMT' + 'Thu, 17 Sep 2020 17:44:29 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_client_gets_no_mined_opinions.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_client_gets_no_mined_opinions.js index e99a69ab4f71..dc1f90d151d9 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_client_gets_no_mined_opinions.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_client_gets_no_mined_opinions.js @@ -22,17 +22,17 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '7db40ef5-a5eb-4b5b-9a2d-f18b4ae99000', + 'ef29143d-d90f-4158-b20a-039f77f02400', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AmfxjW6TJjxEt7zPANiL8KDIIHRUAQAAAKRc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:08 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AryYP_Im1q5IlH-P86AF1NTIIHRUAQAAAH6X9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:30 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:07 GMT', + 'Thu, 17 Sep 2020 17:44:29 GMT', 'Content-Length', '1329' ]); @@ -48,13 +48,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1', 'x-envoy-upstream-service-time', - '87', + '166', 'apim-request-id', - 'a59848a0-7d46-4525-94e3-ac3a7aee1390', + 'c8a6bf3e-f335-4c8b-9a72-723ca25b3fa4', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:08 GMT' + 'Thu, 17 Sep 2020 17:44:30 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_client_gets_positive_mined_opinions.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_client_gets_positive_mined_opinions.js index 5be66a06e1a8..3f7e121988e1 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_client_gets_positive_mined_opinions.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_client_gets_positive_mined_opinions.js @@ -24,17 +24,17 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'a1bd149f-22ff-4c3a-9635-1846567b5f00', + '7863fc5c-7330-474d-b81d-05d5beaf9000', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=Au6nYTefzfFFl0XENU2oNv7IIHRUAQAAAKFc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:06 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Ak8V7T-ngtVApIuT6K6Ksg3IIHRUAQAAAHyX9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:29 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:05 GMT' + 'Thu, 17 Sep 2020 17:44:28 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -48,13 +48,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1', 'x-envoy-upstream-service-time', - '378', + '88', 'apim-request-id', - '88097fb3-33dd-4e8a-b61f-f5a82163bc7a', + '568c2954-dfda-43d0-ae90-19948b0b12bb', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:06 GMT' + 'Thu, 17 Sep 2020 17:44:29 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_service_has_a_bug_when_referencing_opinions_in_doc_6_or_greater.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_service_has_a_bug_when_referencing_opinions_in_doc_6_or_greater.js new file mode 100644 index 000000000000..6546140d801d --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_service_has_a_bug_when_referencing_opinions_in_doc_6_or_greater.js @@ -0,0 +1,60 @@ +let nock = require('nock'); + +module.exports.hash = "40a9e7ebcfcded5654d5d1ce853da9ec"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/azure_tenant_id/oauth2/v2.0/token', "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default") + .reply(200, {"token_type":"Bearer","expires_in":3599,"ext_expires_in":3599,"access_token":"access_token"}, [ + 'Cache-Control', + 'no-store, no-cache', + 'Pragma', + 'no-cache', + 'Content-Type', + 'application/json; charset=utf-8', + 'Expires', + '-1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '9fa35d68-1066-4aa5-9753-6de04cf92800', + 'x-ms-ests-server', + '2.1.11021.16 - CHI ProdSlices', + 'Set-Cookie', + 'fpc=AnkhyVh_3j1FgaYgclSNZJfIIHRUAQAAAHqX9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:27 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', + 'Date', + 'Thu, 17 Sep 2020 17:44:26 GMT', + 'Content-Length', + '1329' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('/text/analytics/v3.1-preview.2/sentiment', {"documents":[{"id":"0","text":"The food was unacceptable","language":"en"},{"id":"1","text":"The rooms were beautiful. The AC was good and quiet.","language":"en"},{"id":"2","text":"The breakfast was good, but the toilet was smelly.","language":"en"},{"id":"3","text":"Loved this hotel - good breakfast - nice shuttle service - clean rooms.","language":"en"},{"id":"4","text":"I had a great unobstructed view of the Microsoft campus.","language":"en"},{"id":"5","text":"Nice rooms but bathrooms were old and the toilet was dirty when we arrived.","language":"en"},{"id":"6","text":"The toilet smelled.","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"id":"0","sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"offset":0,"length":25,"text":"The food was unacceptable","aspects":[{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":4,"length":4,"text":"food","relations":[{"relationType":"opinion","ref":"#/documents/0/sentences/0/opinions/0"}]}],"opinions":[{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":13,"length":12,"text":"unacceptable","isNegated":false}]}],"warnings":[]},{"id":"1","sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":0,"length":25,"text":"The rooms were beautiful.","aspects":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":4,"length":5,"text":"rooms","relations":[{"relationType":"opinion","ref":"#/documents/1/sentences/0/opinions/0"}]}],"opinions":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":15,"length":9,"text":"beautiful","isNegated":false}]},{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":26,"length":26,"text":"The AC was good and quiet.","aspects":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":30,"length":2,"text":"AC","relations":[{"relationType":"opinion","ref":"#/documents/1/sentences/1/opinions/0"},{"relationType":"opinion","ref":"#/documents/1/sentences/1/opinions/1"}]}],"opinions":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":37,"length":4,"text":"good","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":46,"length":5,"text":"quiet","isNegated":false}]}],"warnings":[]},{"id":"2","sentiment":"negative","confidenceScores":{"positive":0.01,"neutral":0,"negative":0.99},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"neutral":0,"negative":0.99},"offset":0,"length":50,"text":"The breakfast was good, but the toilet was smelly.","aspects":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":4,"length":9,"text":"breakfast","relations":[{"relationType":"opinion","ref":"#/documents/2/sentences/0/opinions/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":32,"length":6,"text":"toilet","relations":[{"relationType":"opinion","ref":"#/documents/2/sentences/0/opinions/1"}]}],"opinions":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":18,"length":4,"text":"good","isNegated":false},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":43,"length":6,"text":"smelly","isNegated":false}]}],"warnings":[]},{"id":"3","sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":0,"length":71,"text":"Loved this hotel - good breakfast - nice shuttle service - clean rooms.","aspects":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":11,"length":5,"text":"hotel","relations":[{"relationType":"opinion","ref":"#/documents/3/sentences/0/opinions/0"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":24,"length":9,"text":"breakfast","relations":[{"relationType":"opinion","ref":"#/documents/3/sentences/0/opinions/1"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":41,"length":15,"text":"shuttle service","relations":[{"relationType":"opinion","ref":"#/documents/3/sentences/0/opinions/2"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":65,"length":5,"text":"rooms","relations":[{"relationType":"opinion","ref":"#/documents/3/sentences/0/opinions/0"},{"relationType":"opinion","ref":"#/documents/3/sentences/0/opinions/1"},{"relationType":"opinion","ref":"#/documents/3/sentences/0/opinions/3"},{"relationType":"opinion","ref":"#/documents/3/sentences/0/opinions/2"}]}],"opinions":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":19,"length":4,"text":"good","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":36,"length":4,"text":"nice","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":0,"length":5,"text":"loved","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":59,"length":5,"text":"clean","isNegated":false}]}],"warnings":[]},{"id":"4","sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":0,"length":56,"text":"I had a great unobstructed view of the Microsoft campus.","aspects":[{"sentiment":"positive","confidenceScores":{"positive":0.97,"negative":0.03},"offset":27,"length":4,"text":"view","relations":[{"relationType":"opinion","ref":"#/documents/4/sentences/0/opinions/0"},{"relationType":"opinion","ref":"#/documents/4/sentences/0/opinions/1"}]}],"opinions":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":8,"length":5,"text":"great","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":0.93,"negative":0.07},"offset":14,"length":12,"text":"unobstructed","isNegated":false}]}],"warnings":[]},{"id":"5","sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"offset":0,"length":75,"text":"Nice rooms but bathrooms were old and the toilet was dirty when we arrived.","aspects":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":5,"length":5,"text":"rooms","relations":[{"relationType":"opinion","ref":"#/documents/0/sentences/0/opinions/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":15,"length":9,"text":"bathrooms","relations":[{"relationType":"opinion","ref":"#/documents/0/sentences/0/opinions/1"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":42,"length":6,"text":"toilet","relations":[{"relationType":"opinion","ref":"#/documents/0/sentences/0/opinions/2"}]}],"opinions":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":0,"length":4,"text":"nice","isNegated":false},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":30,"length":3,"text":"old","isNegated":false},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":53,"length":5,"text":"dirty","isNegated":false}]}],"warnings":[]},{"id":"6","sentiment":"neutral","confidenceScores":{"positive":0.03,"neutral":0.63,"negative":0.34},"sentences":[{"sentiment":"neutral","confidenceScores":{"positive":0.03,"neutral":0.63,"negative":0.34},"offset":0,"length":19,"text":"The toilet smelled.","aspects":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":4,"length":6,"text":"toilet","relations":[{"relationType":"opinion","ref":"#/documents/1/sentences/0/opinions/0"}]}],"opinions":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":11,"length":7,"text":"smelled","isNegated":false}]}],"warnings":[]}],"errors":[],"modelVersion":"2020-04-01"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=7', + 'x-envoy-upstream-service-time', + '142', + 'apim-request-id', + 'b8052d0a-2b9d-4598-8836-8306a0af31b8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Thu, 17 Sep 2020 17:44:27 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.js index da75183001f4..b8623fd24258 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.js @@ -24,17 +24,17 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '4284e311-be50-462b-ab36-7dc8bc908b00', + 'c8e70122-b56f-480b-bcba-a064c4502200', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AgYBLuEzYfNEgJKGUxZKDoXIIHRUAQAAAKBc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:05 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AmMQTKk0BbdItCMSgymXD4nIIHRUAQAAAHuX9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:27 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:04 GMT' + 'Thu, 17 Sep 2020 17:44:27 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -48,13 +48,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=4', 'x-envoy-upstream-service-time', - '108', + '97', 'apim-request-id', - '19c2bed8-b8b1-4eed-bc3c-b7e18c8a67e7', + '8a4c7400-26e7-4be4-8f9d-d8927aaaf88a', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:04 GMT' + 'Thu, 17 Sep 2020 17:44:27 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_service_returns_error_for_invalid_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_service_returns_error_for_invalid_language.js index 3c8a14f688b6..0fe5b2f87e10 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_service_returns_error_for_invalid_language.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_analyzesentiment/recording_service_returns_error_for_invalid_language.js @@ -11,8 +11,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1329', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -24,17 +22,19 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '1c91b996-8cc2-43ee-aa29-ae4226448a00', + '2a7baf12-1bb4-4104-9419-6e64c7d49200', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AsVZSsxjympIlVCCb1YnPZrIIHRUAQAAAKBc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:04 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Aluh2lKA3IBIsziWZaLo8MLIIHRUAQAAAHmX9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:26 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:04 GMT' + 'Thu, 17 Sep 2020 17:44:25 GMT', + 'Content-Length', + '1329' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -48,11 +48,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '4', 'apim-request-id', - 'e2044647-77dc-4588-ab60-2ef283693f7b', + '56363e80-cb73-443c-93cc-db0eaf47c06d', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:04 GMT' + 'Thu, 17 Sep 2020 17:44:26 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_detectlanguage/recording_client_accepts_a_countryhint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_detectlanguage/recording_client_accepts_a_countryhint.js index d55ee00951f7..dcd3cdad6ea5 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_detectlanguage/recording_client_accepts_a_countryhint.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_detectlanguage/recording_client_accepts_a_countryhint.js @@ -22,17 +22,17 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'fff6fa89-940b-4af6-b48c-0c6f7ef99800', + '8807e01a-d221-4a63-bd18-659fa7fe7d00', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AmFno1RBO1VJjBD4IaeAurvIIHRUAQAAAKVc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:09 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Anb54f401btFtcNUcXgnaZTIIHRUAQAAAH-X9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:31 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:08 GMT', + 'Thu, 17 Sep 2020 17:44:30 GMT', 'Content-Length', '1329' ]); @@ -47,13 +47,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1', 'x-envoy-upstream-service-time', - '15', + '23', 'apim-request-id', - '67e030b4-d9d0-4995-b210-2f6471a58573', + 'af2420e8-5316-4756-8cf3-bb74c3bfa298', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:09 GMT' + 'Thu, 17 Sep 2020 17:44:31 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.js index 9175e9459d06..1b8d4498336a 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.js @@ -11,8 +11,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1329', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -24,17 +22,19 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'a3d40b2d-2d55-47b5-9b18-eb521ea19900', + '60b9aab7-74cc-40e9-a8c5-c43591f07e00', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AoKmpwsbq_lPokVyDmyxurXIIHRUAQAAAKdc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:11 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AjLpSZBUhmpOve-LuHoDY93IIHRUAQAAAIGX9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:33 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:11 GMT' + 'Thu, 17 Sep 2020 17:44:32 GMT', + 'Content-Length', + '1329' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -47,13 +47,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=6', 'x-envoy-upstream-service-time', - '80', + '10', 'apim-request-id', - '85b2806c-6a3f-48b1-978d-b24f15d71e4b', + '322334a1-6196-420a-834d-8aff7b252cbd', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:11 GMT' + 'Thu, 17 Sep 2020 17:44:33 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_detectlanguage/recording_client_accepts_no_countryhint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_detectlanguage/recording_client_accepts_no_countryhint.js index 28ad7599c9a4..d12555ff8181 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_detectlanguage/recording_client_accepts_no_countryhint.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_detectlanguage/recording_client_accepts_no_countryhint.js @@ -11,8 +11,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1329', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -24,17 +22,19 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '152cc118-cd44-4e87-8f95-150e66a67c00', + '94fdceb9-1126-4740-b799-e3a87044a600', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=An4o3ol3zh5IqR5A_t_4EmPIIHRUAQAAAKRc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:08 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AvtF7Ge2T5FKj_DbmouPtqLIIHRUAQAAAH6X9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:30 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:08 GMT' + 'Thu, 17 Sep 2020 17:44:30 GMT', + 'Content-Length', + '1329' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -47,13 +47,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=4', 'x-envoy-upstream-service-time', - '12', + '13', 'apim-request-id', - 'ce7f433c-f3dc-40e0-9c26-37dd66b17000', + 'ac5882fd-97f4-4397-93c3-47cdf81928eb', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:08 GMT' + 'Thu, 17 Sep 2020 17:44:30 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.js index e882d9afbeae..f050d3d2761c 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.js @@ -22,17 +22,17 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '465b1770-ffcd-4a50-a924-4dceeefc8800', + '0cefc7d6-dff7-4f5e-99ac-161528ef2c00', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AluRBvF0KydLpGOW1vTk75vIIHRUAQAAAKZc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:10 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AjkrFu86laFFlJ-e3zRF74PIIHRUAQAAAH-X9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:32 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:10 GMT', + 'Thu, 17 Sep 2020 17:44:31 GMT', 'Content-Length', '1329' ]); @@ -47,13 +47,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=6', 'x-envoy-upstream-service-time', - '13', + '14', 'apim-request-id', - '28b5325c-4c82-48a6-95dd-3df692077935', + '254f18cd-e0aa-41c1-b211-a8da9442b797', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:10 GMT' + 'Thu, 17 Sep 2020 17:44:32 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.js index bd9b4a30d177..2b9de2a0d558 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.js @@ -24,17 +24,17 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'c7f04747-2020-4997-88de-d329b7d96900', + '765482a3-6a7d-4e0c-aeb3-32fe58423600', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=Aii_-sK2E_NAnZ9awyWUl0HIIHRUAQAAAKVc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:10 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AkhCIa2g2plOj65QGE9uHyrIIHRUAQAAAH-X9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:32 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:09 GMT' + 'Thu, 17 Sep 2020 17:44:31 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -47,13 +47,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1', 'x-envoy-upstream-service-time', - '74', + '23', 'apim-request-id', - '7cda12eb-ad7d-4cdd-8205-9131abe5882e', + '13383a00-cf5b-4ce3-ab72-92727e2c2d81', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:09 GMT' + 'Thu, 17 Sep 2020 17:44:32 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_detectlanguage/recording_service_errors_on_invalid_country_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_detectlanguage/recording_service_errors_on_invalid_country_hint.js index d36f9160e159..7a617c78508f 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_detectlanguage/recording_service_errors_on_invalid_country_hint.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_detectlanguage/recording_service_errors_on_invalid_country_hint.js @@ -11,6 +11,8 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'no-store, no-cache', 'Pragma', 'no-cache', + 'Content-Length', + '1329', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -22,19 +24,17 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '0080b2a2-c893-4356-be81-a0ce87e5c700', + 'af2cbaf0-d797-43a7-9f9a-2c6a17962000', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AgxJOpLSCK5MhBE3p5ofdR3IIHRUAQAAAKZc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:11 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=ApipGBk1f2tBpvFnQ9OiUX_IIHRUAQAAAIGX9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:33 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:10 GMT', - 'Content-Length', - '1329' + 'Thu, 17 Sep 2020 17:44:32 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -45,13 +45,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '2', + '3', 'apim-request-id', - 'bd25c71c-f360-4989-8bb6-a49121cf4384', + 'ebdb66a8-5243-473a-b550-677a9e455b0a', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:10 GMT' + 'Thu, 17 Sep 2020 17:44:32 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.js index 2dfe5118adc4..7f5de116419c 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.js @@ -11,6 +11,8 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'no-store, no-cache', 'Pragma', 'no-cache', + 'Content-Length', + '1329', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -22,19 +24,17 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '42fc99a0-cb49-44aa-82a8-6177cd2aab00', + '9bde9286-cf51-4ec9-a51a-a14cd7872300', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AqLFdyL5X8xKqgzX4zNB96HIIHRUAQAAAKxc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:16 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Au1HK6ynSqxItC_ig2MrTlPIIHRUAQAAAIeX9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:39 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:16 GMT', - 'Content-Length', - '1329' + 'Thu, 17 Sep 2020 17:44:39 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -47,13 +47,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=6', 'x-envoy-upstream-service-time', - '13', + '28', 'apim-request-id', - 'ffd6f7b8-2044-439b-867a-f8855b81b3a7', + '534f0fb8-9173-431a-b9ef-bae77ab7e817', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:17 GMT' + 'Thu, 17 Sep 2020 17:44:39 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.js index fece6673f61e..cbcb0047c258 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.js @@ -22,17 +22,17 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'f76cdaff-c9e7-4eb8-aa4c-16c9c12d5c00', + '77395410-cd99-4366-84d9-7443125b9900', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AnT4ZH4hutNHtlzYv28RiXbIIHRUAQAAAKtc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:15 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=ArMTgAH6P8VNu1ooeBHOSprIIHRUAQAAAIWX9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:38 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:15 GMT', + 'Thu, 17 Sep 2020 17:44:37 GMT', 'Content-Length', '1329' ]); @@ -47,13 +47,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=4', 'x-envoy-upstream-service-time', - '14', + '21', 'apim-request-id', - '9f6cad79-f20e-4557-98c6-22e84a176a14', + '7328b06a-7e84-470e-8bdf-ea90189ee551', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:15 GMT' + 'Thu, 17 Sep 2020 17:44:38 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_extractkeyphrases/recording_client_accepts_string_with_no_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_extractkeyphrases/recording_client_accepts_string_with_no_language.js index 5b92a00ef4af..b757e6145385 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_extractkeyphrases/recording_client_accepts_string_with_no_language.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_extractkeyphrases/recording_client_accepts_string_with_no_language.js @@ -22,17 +22,17 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '322686b6-9bc6-445c-8665-61c706ed5100', + 'faf7d641-b386-4269-8d7f-545cd3457500', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AsDmL0s-btlFjMvcuvXCA3LIIHRUAQAAAKpc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:15 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Am2FZRrQ6HVMubte79-3tKTIIHRUAQAAAIWX9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:37 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:14 GMT', + 'Thu, 17 Sep 2020 17:44:37 GMT', 'Content-Length', '1329' ]); @@ -47,13 +47,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=4', 'x-envoy-upstream-service-time', - '14', + '17', 'apim-request-id', - '8b307ad7-52a4-4386-80df-aaf1d319a846', + '9fd7b40d-c1e7-4425-84d1-c9c14155b07b', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:14 GMT' + 'Thu, 17 Sep 2020 17:44:37 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_extractkeyphrases/recording_service_errors_on_unsupported_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_extractkeyphrases/recording_service_errors_on_unsupported_language.js index b83beb0d395c..9bbdc8e97167 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_extractkeyphrases/recording_service_errors_on_unsupported_language.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_extractkeyphrases/recording_service_errors_on_unsupported_language.js @@ -11,8 +11,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1329', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -24,17 +22,19 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6041585b-36d5-427c-8a18-e4d5db5d9800', + '7e6afc3f-0ea9-42c0-a0b1-05c6383e2400', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=Ak871msMpklGq7U6MpPfbqnIIHRUAQAAAKtc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:15 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AtGNKs_G-Y9Os5aUrJcQLNHIIHRUAQAAAIaX9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:38 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:15 GMT' + 'Thu, 17 Sep 2020 17:44:38 GMT', + 'Content-Length', + '1329' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -45,13 +45,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '3', + '2', 'apim-request-id', - '84de41a4-9236-484d-87cf-d8825b473d78', + '64379518-9f3b-461c-b54a-815b4f4eb431', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:15 GMT' + 'Thu, 17 Sep 2020 17:44:38 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_extractkeyphrases/recording_service_reports_warning_for_long_words.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_extractkeyphrases/recording_service_reports_warning_for_long_words.js index dab9dd52e982..80e73d84a696 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_extractkeyphrases/recording_service_reports_warning_for_long_words.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_extractkeyphrases/recording_service_reports_warning_for_long_words.js @@ -11,8 +11,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1329', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -24,17 +22,19 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '08e72b08-8c3b-4ab4-86ea-a4ae425a9f00', + '65ebbec6-bce5-4144-8143-795a2a6a3100', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AlokBMuYJ-ZOnVlr1FcFErLIIHRUAQAAAKtc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:16 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AlbWQDxA4j1PhGLfQB5iL_fIIHRUAQAAAIaX9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:39 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:16 GMT' + 'Thu, 17 Sep 2020 17:44:38 GMT', + 'Content-Length', + '1329' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -47,13 +47,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1', 'x-envoy-upstream-service-time', - '11', + '21', 'apim-request-id', - 'b5477807-ccfa-4ca1-b0c9-a71284a549e7', + '1515e75a-bd89-4496-b8fc-6f66ad9485ba', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:16 GMT' + 'Thu, 17 Sep 2020 17:44:38 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.js index d8756fb237cf..1f25a0389cc8 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.js @@ -11,8 +11,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1329', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -24,17 +22,19 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '2ae95dbc-caef-450d-a75b-eacb0f8a8d00', + 'c8f03239-efa1-4a6e-a8f2-2064c38f8f00', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AsZRgFhXABdBn0WkW2gaxp_IIHRUAQAAAKlc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:13 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AnD0-2MjBGlBozN_-sk-F_DIIHRUAQAAAISX9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:36 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:13 GMT' + 'Thu, 17 Sep 2020 17:44:36 GMT', + 'Content-Length', + '1329' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -48,13 +48,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=5', 'x-envoy-upstream-service-time', - '112', + '183', 'apim-request-id', - 'c69375ad-0e0c-4d3b-943b-3404f6af313d', + '22ce49b2-da03-4463-84df-cfac05bdfc77', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:14 GMT' + 'Thu, 17 Sep 2020 17:44:36 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizeentities/recording_client_accepts_string_with_a_language_specified.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizeentities/recording_client_accepts_string_with_a_language_specified.js index 49521399b46d..c17711d820be 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizeentities/recording_client_accepts_string_with_a_language_specified.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizeentities/recording_client_accepts_string_with_a_language_specified.js @@ -11,8 +11,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1329', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -24,17 +22,19 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '01ab4c64-b707-4849-aa08-83de75868c00', + 'e9301c08-514d-4090-b711-79cf9a30b000', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AnfdWMuScm5Fm2uWyU1rURbIIHRUAQAAAKdc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:12 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AimhxU3DCm9JkOVOnMePxs7IIHRUAQAAAIOX9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:35 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:12 GMT' + 'Thu, 17 Sep 2020 17:44:34 GMT', + 'Content-Length', + '1329' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -48,13 +48,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=4', 'x-envoy-upstream-service-time', - '189', + '156', 'apim-request-id', - '8a8bfb75-aecb-4795-ad33-8ca0b49cb3a4', + 'd7c0d409-97c1-4f61-921f-87977fce469d', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:13 GMT' + 'Thu, 17 Sep 2020 17:44:35 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizeentities/recording_client_accepts_string_with_no_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizeentities/recording_client_accepts_string_with_no_language.js index dda7dfdf8f72..3ca9711c0fc3 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizeentities/recording_client_accepts_string_with_no_language.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizeentities/recording_client_accepts_string_with_no_language.js @@ -24,17 +24,17 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'e09c46b5-7946-49b3-ae1b-6dca78128700', + '129244a9-c223-438c-a518-30d1eac92200', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AjHfzyq0RDhGonwzCdQBZjjIIHRUAQAAAKdc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:12 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AukaSEu08mhJjX9I5shG9jPIIHRUAQAAAIKX9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:34 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:11 GMT' + 'Thu, 17 Sep 2020 17:44:34 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -48,13 +48,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=4', 'x-envoy-upstream-service-time', - '94', + '166', 'apim-request-id', - '56591dc1-7864-4f0b-907c-cc7b612c29ac', + 'c72e255b-18ef-4727-bf71-0c4ad4b54634', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:11 GMT' + 'Thu, 17 Sep 2020 17:44:34 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizeentities/recording_client_throws_exception_for_too_many_inputs.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizeentities/recording_client_throws_exception_for_too_many_inputs.js index 4d1da36e8a49..db35756d80a8 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizeentities/recording_client_throws_exception_for_too_many_inputs.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizeentities/recording_client_throws_exception_for_too_many_inputs.js @@ -24,17 +24,17 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '35d2740b-3825-480b-9871-70f106169000', + 'b129984b-47e6-46c7-ba92-501654da2300', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AvWNkA5rQ3FMtfc1KVIp3efIIHRUAQAAAKlc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:14 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AuDGJ8nJNB5Jj1HiKUdC1dTIIHRUAQAAAISX9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:37 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:13 GMT' + 'Thu, 17 Sep 2020 17:44:36 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -46,13 +46,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '5', + '10', 'apim-request-id', - 'c626be47-ae37-409a-805f-a27c8bd2788d', + '8922dd42-c40d-4194-9b7a-b1c50c608b9a', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:14 GMT' + 'Thu, 17 Sep 2020 17:44:36 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizeentities/recording_service_errors_on_unsupported_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizeentities/recording_service_errors_on_unsupported_language.js index 6cfbfe906ea7..7d76a003070c 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizeentities/recording_service_errors_on_unsupported_language.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizeentities/recording_service_errors_on_unsupported_language.js @@ -22,17 +22,17 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6bac63ba-0bdf-44a2-8653-78b2d5528100', + '8cec6629-8bd1-4556-a165-5963d8521c00', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AmiXl5czQT9DniEeX3GGqEzIIHRUAQAAAKhc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:13 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=ArJqPVZ4uJlCm_B1a80n50fIIHRUAQAAAIKX9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:35 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:13 GMT', + 'Thu, 17 Sep 2020 17:44:34 GMT', 'Content-Length', '1329' ]); @@ -48,11 +48,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '2', 'apim-request-id', - '93cecaec-4dbf-4602-a1d1-1b026ee9fb7a', + '21ab6b40-b815-4758-a2c2-1da222e8ae98', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:13 GMT' + 'Thu, 17 Sep 2020 17:44:35 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.js index b75f6b242a6d..99800e42c749 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.js @@ -11,6 +11,8 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'no-store, no-cache', 'Pragma', 'no-cache', + 'Content-Length', + '1329', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -22,19 +24,17 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'aebfb3c1-8f13-473d-87a7-96a867647c00', + '8c20841f-3d75-47bf-bbf2-5dbfe74f9800', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AjgF6WfhkDhGu1Dh_7prw2vIIHRUAQAAALFc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:22 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AryDuutx47tGnlRtFxMXVk7IIHRUAQAAAJiX9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:57 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:22 GMT', - 'Content-Length', - '1329' + 'Thu, 17 Sep 2020 17:44:56 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -48,13 +48,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=5', 'x-envoy-upstream-service-time', - '42', + '1136', 'apim-request-id', - 'c7ef3658-7fb6-4fa2-87d0-167d656e0ee8', + '04f73821-54a2-4ad2-8247-82e4948b7569', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:22 GMT' + 'Thu, 17 Sep 2020 17:44:57 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.js index 015c1f376520..0a647132a6b5 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.js @@ -11,8 +11,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1329', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -24,17 +22,19 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '78fc8990-ee14-4f48-9289-2bd97f086000', + '03e2b67c-652c-41df-a9ac-1268a9349500', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AjCcw4PFiTJNqPO1zjlPoA_IIHRUAQAAALFc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:21 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AuNLz7EwFGVNjh7H_CORJtTIIHRUAQAAAJaX9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:55 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:20 GMT' + 'Thu, 17 Sep 2020 17:44:54 GMT', + 'Content-Length', + '1329' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -48,13 +48,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=4', 'x-envoy-upstream-service-time', - '27', + '1000', 'apim-request-id', - 'b23b0a64-8a83-459e-9de5-77f8d3043d9b', + '5aee3913-ef97-4fdd-8665-fea444e8ce04', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:22 GMT' + 'Thu, 17 Sep 2020 17:44:55 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizelinkedentities/recording_client_accepts_string_with_no_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizelinkedentities/recording_client_accepts_string_with_no_language.js index 4e56f7e0a066..ddc255644cc2 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizelinkedentities/recording_client_accepts_string_with_no_language.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizelinkedentities/recording_client_accepts_string_with_no_language.js @@ -24,17 +24,17 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '8febd6be-022c-4d2c-88d2-22794dd39600', + '1df93eb2-a788-4ea2-9114-b23ae10c8a00', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AjzHCXk17HVAgpd07yd92bLIIHRUAQAAALBc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:21 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhYjsAM4hnJNtOvdXyjj2sjIIHRUAQAAAJaX9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:54 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:20 GMT' + 'Thu, 17 Sep 2020 17:44:53 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -48,13 +48,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=4', 'x-envoy-upstream-service-time', - '437', + '39', 'apim-request-id', - '8d3464dc-8a68-4cd7-82e3-0583e38cdf24', + '9d63a285-c98e-4e2b-88b8-fa3a691021b7', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:20 GMT' + 'Thu, 17 Sep 2020 17:44:54 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.js index edc1a9fb4112..b5ceec8362c9 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.js @@ -11,8 +11,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1329', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -24,17 +22,19 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'aaa9e762-2031-4108-be23-35e72912b400', + '9501db21-9031-4341-babe-305e01772700', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=An0K9b3759JJsGZkRr8HrHnIIHRUAQAAALNc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:23 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AuK57eaOw9ZFnhkPFiLQmCzIIHRUAQAAAJmX9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:58 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:23 GMT' + 'Thu, 17 Sep 2020 17:44:57 GMT', + 'Content-Length', + '1329' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -46,13 +46,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '4', + '5', 'apim-request-id', - 'aa30ab00-6b32-4449-b181-4b1cd67097f6', + 'dd9b2fc1-895e-4348-9f49-3c6b750177f7', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:23 GMT' + 'Thu, 17 Sep 2020 17:44:58 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizelinkedentities/recording_service_errors_on_unsupported_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizelinkedentities/recording_service_errors_on_unsupported_language.js index bb658091f371..27528a4eb245 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizelinkedentities/recording_service_errors_on_unsupported_language.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizelinkedentities/recording_service_errors_on_unsupported_language.js @@ -11,8 +11,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1329', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -24,17 +22,19 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '613fdf57-20ac-4371-98ec-ab49fb9f8f00', + '70ec1713-2293-42b3-b515-11aa49ef9800', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AujfV3f5YcdLgJs_HaRk6H_IIHRUAQAAALFc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:22 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AqHxrqBGsDFMldDP8hmnoTvIIHRUAQAAAJeX9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:56 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:21 GMT' + 'Thu, 17 Sep 2020 17:44:55 GMT', + 'Content-Length', + '1329' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -46,13 +46,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '2', + '3', 'apim-request-id', - '44bec15a-38b7-4073-abc3-2a926d129985', + '91babf91-d6d4-4b01-8017-c09dcbdea96d', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:22 GMT' + 'Thu, 17 Sep 2020 17:44:56 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizepiientities/recording_accepts_domain_filter.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizepiientities/recording_accepts_domain_filter.js index 405cc4eab683..065e0846aed1 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizepiientities/recording_accepts_domain_filter.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizepiientities/recording_accepts_domain_filter.js @@ -11,8 +11,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1329', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -24,17 +22,19 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '526e7361-4581-4545-b969-f3976dfe5400', + 'f5d4d509-ae2f-4590-bd0d-c4b3e481b200', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AoY6RDUn2RRLs_3zLa3b2PzIIHRUAQAAAK9c9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:20 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AuvkJX9ReWhFszZJVuGyTnvIIHRUAQAAAJOX9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:51 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:20 GMT' + 'Thu, 17 Sep 2020 17:44:51 GMT', + 'Content-Length', + '1329' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -48,13 +48,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1', 'x-envoy-upstream-service-time', - '79', + '1977', 'apim-request-id', - '2328f172-3098-481f-852a-a1fdc3c44f8b', + 'edf0e2f7-0212-45cd-8847-17661414f4a8', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:20 GMT' + 'Thu, 17 Sep 2020 17:44:53 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.js index 5ea7225142a6..a2c4dbd2b966 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.js @@ -11,8 +11,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1329', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -24,17 +22,19 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'e8678b41-9f9f-4329-beb5-821fde377700', + '26ba1b05-655c-4081-80fa-3b907c208200', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AtlYMQpYsdtEnCSOG4bwnvbIIHRUAQAAAK9c9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:20 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AiP2WXNjxDlEqXr0BCR906jIIHRUAQAAAJCX9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:49 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:19 GMT' + 'Thu, 17 Sep 2020 17:44:48 GMT', + 'Content-Length', + '1329' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -48,13 +48,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=3', 'x-envoy-upstream-service-time', - '88', + '1945', 'apim-request-id', - 'df6d22fb-671d-4e8c-a33b-6e453d3eca18', + '6c3c6c7c-783c-4373-a1b8-81359f48dd43', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:19 GMT' + 'Thu, 17 Sep 2020 17:44:50 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizepiientities/recording_client_accepts_string_with_a_language_specified.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizepiientities/recording_client_accepts_string_with_a_language_specified.js index 2d3f7fcb85e7..af3797d06392 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizepiientities/recording_client_accepts_string_with_a_language_specified.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizepiientities/recording_client_accepts_string_with_a_language_specified.js @@ -11,6 +11,8 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'no-store, no-cache', 'Pragma', 'no-cache', + 'Content-Length', + '1329', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -22,19 +24,17 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '867e301a-6142-4a12-bd65-b27770d25000', + '67dae986-1e0b-47be-b38f-de0fe9e16b00', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AtAVNXxDnFtGto37-snEDfPIIHRUAQAAAK5c9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:18 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Avc5G0uEQH9LhUTG7-T3gHHIIHRUAQAAAIyX9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:45 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:17 GMT', - 'Content-Length', - '1329' + 'Thu, 17 Sep 2020 17:44:45 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -48,13 +48,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=4', 'x-envoy-upstream-service-time', - '103', + '139', 'apim-request-id', - '5ec51746-9895-4881-8e08-e3f6f954c17e', + 'c5607dfc-68d5-455a-8550-6e2e0e5f8ead', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:18 GMT' + 'Thu, 17 Sep 2020 17:44:45 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizepiientities/recording_client_accepts_string_with_no_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizepiientities/recording_client_accepts_string_with_no_language.js index 715ed8c46b9a..e1c8f83db46d 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizepiientities/recording_client_accepts_string_with_no_language.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizepiientities/recording_client_accepts_string_with_no_language.js @@ -11,8 +11,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1329', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -24,17 +22,19 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '0bf17de8-63d7-4e25-a6e0-a5a7ae596e00', + '1263c99a-b77a-4745-92fe-784d20602000', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AlB3M1P0kHlEhFQMDSs-QsLIIHRUAQAAAK1c9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:17 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AnWpR7oQnR1Dn8pH1K2LxRLIIHRUAQAAAIqX9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:42 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:17 GMT' + 'Thu, 17 Sep 2020 17:44:42 GMT', + 'Content-Length', + '1329' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -48,13 +48,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=4', 'x-envoy-upstream-service-time', - '136', + '2065', 'apim-request-id', - '3273fc62-c84a-4c51-aa33-36360b00382e', + '5b46ea53-bd49-44e1-9f5c-8fdb4399687f', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:18 GMT' + 'Thu, 17 Sep 2020 17:44:44 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.js index 1b8621bfa3f4..923a2afb82eb 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.js @@ -11,8 +11,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1329', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -24,17 +22,19 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '96e5577e-e8a3-42b3-a862-fb260b0f4d00', + '2d52ee76-fcd2-482e-ad05-60f8a6be9d00', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AgChTxBjUs1OkD2oqYMJ1UHIIHRUAQAAAK5c9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:18 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Ap60BaS-5zZMkikOUBiHUaXIIHRUAQAAAI2X9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:46 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:18 GMT' + 'Thu, 17 Sep 2020 17:44:46 GMT', + 'Content-Length', + '1329' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -48,13 +48,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1', 'x-envoy-upstream-service-time', - '77', + '1936', 'apim-request-id', - '0d82a2b7-d008-43a7-823c-cde7d7b18041', + '8ca4e25e-c3df-4411-b7d8-3d47763120b1', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:19 GMT' + 'Thu, 17 Sep 2020 17:44:47 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizepiientities/recording_client_throws_on_empty_list.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizepiientities/recording_client_throws_on_empty_list.js index b4fa2677f9bd..60033dc79506 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizepiientities/recording_client_throws_on_empty_list.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizepiientities/recording_client_throws_on_empty_list.js @@ -24,17 +24,17 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'c96345b7-6551-44c4-9b94-d3b47c5d6900', + '662ef0cf-fb51-408c-b878-80b19b63a700', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=Aoqo-dUG6VxKrkX-DM99ulPIIHRUAQAAAKxc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:17 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Ah08GNssQWhImSp5wzgPdV3IIHRUAQAAAIeX9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:40 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:16 GMT' + 'Thu, 17 Sep 2020 17:44:40 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -46,13 +46,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '3', + '1929', 'apim-request-id', - '55512312-3196-4d6b-add6-264f10c3ce57', + '1234b09e-2491-4766-8c0d-d97751d4b288', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:17 GMT' + 'Thu, 17 Sep 2020 17:44:42 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizepiientities/recording_service_errors_on_unsupported_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizepiientities/recording_service_errors_on_unsupported_language.js index 7cdbeea2b01e..e5f5c3dd1bb5 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizepiientities/recording_service_errors_on_unsupported_language.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_recognizepiientities/recording_service_errors_on_unsupported_language.js @@ -24,17 +24,17 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '62f9a678-8877-48ca-b0fb-e0b08f775500', + '5cc92cd3-316f-4555-8011-c96258612800', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=Am4KTKrohEVNvNgBPXIwL4rIIHRUAQAAAK5c9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:19 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AsQzFfjTxKdFhvpt1figJhTIIHRUAQAAAJCX9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:48 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:19 GMT' + 'Thu, 17 Sep 2020 17:44:48 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -46,13 +46,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '2', + '3', 'apim-request-id', - '75b3815f-6862-4125-8f04-2ab4f8315eeb', + '538ae4fb-cec7-44c4-810a-36efce11ec0c', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:19 GMT' + 'Thu, 17 Sep 2020 17:44:49 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_diacritics_nfc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_diacritics_nfc.js index e65d1183d4c2..e9bcbd498e28 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_diacritics_nfc.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_diacritics_nfc.js @@ -11,6 +11,8 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'no-store, no-cache', 'Pragma', 'no-cache', + 'Content-Length', + '1329', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -22,19 +24,17 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'e383710f-75f7-47d1-87b5-05ce281b5a00', + 'cd5bd2bc-c333-4c3e-9ffc-2200c42e2900', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AihaoSTGn_9IrVymgdUJXurIIHRUAQAAALVc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:26 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AkI3u5N17FtMkxUtK_UGU6rIIHRUAQAAAJ2X9dYOAAAA; expires=Sat, 17-Oct-2020 17:45:01 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:25 GMT', - 'Content-Length', - '1329' + 'Thu, 17 Sep 2020 17:45:01 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -48,13 +48,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1', 'x-envoy-upstream-service-time', - '68', + '86', 'apim-request-id', - 'b57ca962-37a3-4024-92aa-3450a3bc0191', + '99b386a6-1567-489f-9f9e-3d9facf510d3', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:26 GMT' + 'Thu, 17 Sep 2020 17:45:01 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_diacritics_nfd.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_diacritics_nfd.js index 022c5220d6f1..259124892147 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_diacritics_nfd.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_diacritics_nfd.js @@ -24,17 +24,17 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '645fa43e-12c1-43c4-989a-815f7d638d00', + '66b6d5e4-9892-480c-bb5d-e1189d242d00', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AhBmKLB9bMxHiwWrtunOICHIIHRUAQAAALZc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:26 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Atxmux4ZzMxFhycYdZ0_2NLIIHRUAQAAAJ2X9dYOAAAA; expires=Sat, 17-Oct-2020 17:45:02 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:26 GMT' + 'Thu, 17 Sep 2020 17:45:01 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -48,13 +48,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1', 'x-envoy-upstream-service-time', - '65', + '85', 'apim-request-id', - 'a8160233-4f2b-4dfa-9253-0e2555e510c8', + 'b566396c-bd60-4b13-919d-b9102b838d26', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:27 GMT' + 'Thu, 17 Sep 2020 17:45:01 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_emoji.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_emoji.js index ddd2fa8a268e..4d9470225492 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_emoji.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_emoji.js @@ -24,17 +24,17 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '273d1947-1b0c-4915-948a-490ee3ed9a00', + '84c0743c-d469-4c8d-9d7d-2d6a5741a300', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AkIW2Jn9k_RLlGSPZFdBRrfIIHRUAQAAALNc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:24 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Ai-Y9zH6pWRCsH3QfTmwYoXIIHRUAQAAAJqX9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:59 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:23 GMT' + 'Thu, 17 Sep 2020 17:44:58 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -48,13 +48,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1', 'x-envoy-upstream-service-time', - '70', + '75', 'apim-request-id', - 'e2b27aeb-59e2-4d4d-865a-92abfd51327f', + '2ca67a90-4e81-4bed-abe5-ad27b880e199', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:23 GMT' + 'Thu, 17 Sep 2020 17:44:59 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_emoji_with_skin_tone_modifier.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_emoji_with_skin_tone_modifier.js index 151d96d6529d..80a6448a0dd7 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_emoji_with_skin_tone_modifier.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_emoji_with_skin_tone_modifier.js @@ -22,17 +22,17 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '3ecbe38b-9729-429c-838e-98b4e4a9a900', + 'aef8c73f-fab8-4c9f-ac6a-26f2146d8100', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AiV2VH9Z59tFqsc4FTMQey3IIHRUAQAAALRc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:24 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AoqOeNnd2YxBjXpBoId2hiHIIHRUAQAAAJuX9dYOAAAA; expires=Sat, 17-Oct-2020 17:44:59 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:24 GMT', + 'Thu, 17 Sep 2020 17:44:59 GMT', 'Content-Length', '1329' ]); @@ -48,13 +48,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1', 'x-envoy-upstream-service-time', - '55', + '76', 'apim-request-id', - 'f24edb26-5ad6-44e1-9431-b93e7c4a76ad', + 'd1a5ec4c-c05a-4b68-9fc4-6d2ddf4c310d', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:25 GMT' + 'Thu, 17 Sep 2020 17:44:59 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_family_emoji.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_family_emoji.js index d5e6134df995..65436c551470 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_family_emoji.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_family_emoji.js @@ -11,6 +11,8 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'no-store, no-cache', 'Pragma', 'no-cache', + 'Content-Length', + '1329', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -22,19 +24,17 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6df30aed-0601-4350-afe9-4c05cf006900', + 'd2d7d285-d5fc-4a5c-88a3-259dd01a2300', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AnSCyef2gOBOiDCqlHhENA7IIHRUAQAAALRc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:25 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=ArnCcK_OkGpAtpVKoCcsFHLIIHRUAQAAAJuX9dYOAAAA; expires=Sat, 17-Oct-2020 17:45:00 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:24 GMT', - 'Content-Length', - '1329' + 'Thu, 17 Sep 2020 17:44:59 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -48,13 +48,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1', 'x-envoy-upstream-service-time', - '65', + '71', 'apim-request-id', - '23c08ca0-3313-4244-be1d-537c4f1d2dcc', + 'f199e316-9a3c-4a3a-9196-50ddff89ed68', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:25 GMT' + 'Thu, 17 Sep 2020 17:45:00 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_family_emoji_wit_skin_tone_modifier.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_family_emoji_wit_skin_tone_modifier.js index 41afb35a9d03..1ead9d795839 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_family_emoji_wit_skin_tone_modifier.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_family_emoji_wit_skin_tone_modifier.js @@ -11,8 +11,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1329', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -24,17 +22,19 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '164577d7-31fe-4f33-91ab-18b232be5900', + '2adf3536-d4dd-446b-8e66-5ce72b998900', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=Aj_t8bXg6pZAiL1_L3k_vCHIIHRUAQAAALRc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:25 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AmuXzTAdoexAv-j68CVRZKrIIHRUAQAAAJyX9dYOAAAA; expires=Sat, 17-Oct-2020 17:45:01 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:25 GMT' + 'Thu, 17 Sep 2020 17:45:00 GMT', + 'Content-Length', + '1329' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -48,13 +48,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1', 'x-envoy-upstream-service-time', - '77', + '72', 'apim-request-id', - '4215c9d2-e7a1-4e05-bc54-a2bb879717f6', + '65a28156-81f3-43cc-90f7-722c2a271fd4', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:26 GMT' + 'Thu, 17 Sep 2020 17:45:01 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_korean_nfc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_korean_nfc.js index 0dc6a930f904..6f23e00c6aef 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_korean_nfc.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_korean_nfc.js @@ -11,8 +11,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1329', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -24,17 +22,19 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '8033b395-9a02-4d34-9960-5d41ade0a800', + '887c8212-2621-4b83-a16a-1a7f6a838e00', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AvrEjFnmaAFCqX8OAXQUp_nIIHRUAQAAALZc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:27 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Ar6X5BIHbXxLiKf-bxxDs7zIIHRUAQAAAJ6X9dYOAAAA; expires=Sat, 17-Oct-2020 17:45:02 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:27 GMT' + 'Thu, 17 Sep 2020 17:45:02 GMT', + 'Content-Length', + '1329' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -48,13 +48,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1', 'x-envoy-upstream-service-time', - '56', + '89', 'apim-request-id', - 'bf9b759f-2270-44da-9e9f-078c84216281', + 'faf9f8a2-6902-48af-a930-49049857e59e', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:27 GMT' + 'Thu, 17 Sep 2020 17:45:02 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_korean_nfd.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_korean_nfd.js index 0eb4cd9298e9..67a51fa9eee4 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_korean_nfd.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_korean_nfd.js @@ -11,8 +11,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1329', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -24,17 +22,19 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '66c98532-b0e2-4042-99b6-94be7f279300', + 'c2c66045-7447-4a87-baf3-3b3bfcfc3500', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AqZiEIuWYs1KsUvCPGvObm_IIHRUAQAAALdc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:28 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AiWWIQHIdG9EiJNSJFRGnObIIHRUAQAAAJ-X9dYOAAAA; expires=Sat, 17-Oct-2020 17:45:03 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:28 GMT' + 'Thu, 17 Sep 2020 17:45:03 GMT', + 'Content-Length', + '1329' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -48,13 +48,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1', 'x-envoy-upstream-service-time', - '69', + '73', 'apim-request-id', - '0cedc76b-76a6-46ea-972f-ae78f8dd400c', + '1d4e041c-86c4-453e-8e50-f959c7e8f547', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:28 GMT' + 'Thu, 17 Sep 2020 17:45:04 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_zalgo.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_zalgo.js index 8c028d777c05..7a5e92ea7552 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_zalgo.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_string_encoding/recording_zalgo.js @@ -22,17 +22,17 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'f021ea54-b423-4552-a2bb-9e01e0be5400', + 'c64dd180-d9d0-4c02-90a8-8bc503ea2900', 'x-ms-ests-server', '2.1.11021.16 - CHI ProdSlices', 'Set-Cookie', - 'fpc=AnzI9xjk2-xMmqoj8lIabkrIIHRUAQAAALdc9NYOAAAA; expires=Fri, 16-Oct-2020 19:21:28 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Akd0GjNdvDhGvsq966Qc00bIIHRUAQAAAKCX9dYOAAAA; expires=Sat, 17-Oct-2020 17:45:05 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=prod; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=ests; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 16 Sep 2020 19:21:27 GMT', + 'Thu, 17 Sep 2020 17:45:04 GMT', 'Content-Length', '1329' ]); @@ -48,13 +48,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1', 'x-envoy-upstream-service-time', - '107', + '110', 'apim-request-id', - '72da8344-765a-4e7e-919c-c313f9d92ef7', + '2a1b1ae1-1f5a-4081-a89d-9dff753d1b5f', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:28 GMT' + 'Thu, 17 Sep 2020 17:45:04 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient/recording_analyzesentiment.js b/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient/recording_analyzesentiment.js index 31da637ccae7..e3a28f1db675 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient/recording_analyzesentiment.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient/recording_analyzesentiment.js @@ -15,13 +15,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=4', 'x-envoy-upstream-service-time', - '100', + '97', 'apim-request-id', - '2eea9015-6046-4235-b61d-94ca0513ed65', + 'e91c5947-b30f-4305-b02c-1be24495d5d3', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:00 GMT' + 'Thu, 17 Sep 2020 17:44:20 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient/recording_detectlanguage.js b/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient/recording_detectlanguage.js index 68ac1b175be0..b9416cca703d 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient/recording_detectlanguage.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient/recording_detectlanguage.js @@ -14,13 +14,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1', 'x-envoy-upstream-service-time', - '256', + '27', 'apim-request-id', - '3f3817e7-b543-42a9-b850-f0f5e58c4cc5', + 'a551a910-7056-4c60-b09b-3a0eae410395', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:00 GMT' + 'Thu, 17 Sep 2020 17:44:20 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient/recording_extractkeyphrases.js b/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient/recording_extractkeyphrases.js index 69d6703e3ec9..a5b011d1ec26 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient/recording_extractkeyphrases.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient/recording_extractkeyphrases.js @@ -14,13 +14,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1', 'x-envoy-upstream-service-time', - '43', + '17', 'apim-request-id', - '7db00d99-d0f0-4454-837a-f0355008c008', + '04a0ab93-8452-475b-ac42-72a0c6bdfb70', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:02 GMT' + 'Thu, 17 Sep 2020 17:44:21 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient/recording_recognizeentities.js b/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient/recording_recognizeentities.js index 81f5ae5a86ce..7daaac024793 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient/recording_recognizeentities.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient/recording_recognizeentities.js @@ -15,13 +15,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1', 'x-envoy-upstream-service-time', - '72', + '107', 'apim-request-id', - '4f49337f-7a16-41a3-89d4-2d1168e710a6', + '5e50a677-7b76-421a-b5d0-fc5ae693b8b3', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:02 GMT' + 'Thu, 17 Sep 2020 17:44:21 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient/recording_recognizelinkedentities.js b/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient/recording_recognizelinkedentities.js index 91b72e0380c3..9132866510f3 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient/recording_recognizelinkedentities.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient/recording_recognizelinkedentities.js @@ -15,13 +15,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1', 'x-envoy-upstream-service-time', - '17', + '1097', 'apim-request-id', - 'fc0af33f-5d0a-4143-8700-74bb9a9bc14c', + '7d47dea0-be08-4a38-ae86-577b9eb4ce56', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:02 GMT' + 'Thu, 17 Sep 2020 17:44:23 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient/recording_recognizepiientities.js b/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient/recording_recognizepiientities.js index be30aa230c9b..7dd2cfa069c4 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient/recording_recognizepiientities.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient/recording_recognizepiientities.js @@ -15,13 +15,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1', 'x-envoy-upstream-service-time', - '78', + '1771', 'apim-request-id', - 'cbdde0db-bb46-41fb-b02f-222f211ad9cf', + '98781d07-4b87-4e99-a842-0733094fbe9f', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 16 Sep 2020 19:21:02 GMT' + 'Thu, 17 Sep 2020 17:44:24 GMT' ]);